From ff96cbeb0209760b73c019cbd7f334487dd8a247 Mon Sep 17 00:00:00 2001 From: Chris Laprun Date: Wed, 16 Dec 2020 18:05:58 +0100 Subject: [PATCH 1/4] feat: do not generate description field if it's empty --- generator/pkg/schemagen/generate.go | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/generator/pkg/schemagen/generate.go b/generator/pkg/schemagen/generate.go index e524883c01f..12290a5c975 100644 --- a/generator/pkg/schemagen/generate.go +++ b/generator/pkg/schemagen/generate.go @@ -53,9 +53,9 @@ type Constraint struct { type CrdScope int32 const ( - Namespaced CrdScope = 0 - Cluster CrdScope = 1 - BasePackage string = "io.fabric8.kubernetes.api.model" + Namespaced CrdScope = 0 + Cluster CrdScope = 1 + BasePackage string = "io.fabric8.kubernetes.api.model" ) func GenerateSchema(schemaId string, crdLists map[reflect.Type]CrdScope, providedPackages map[string]string, manualTypeMap map[reflect.Type]string, packageMapping map[string]PackageInformation, mappingSchema map[string]string, providedTypes []ProvidedType, constraints map[reflect.Type]map[string]*Constraint) string { @@ -289,11 +289,11 @@ func (g *schemaGenerator) generate(schemaId string, crdLists map[reflect.Type]Cr } javaType := g.javaType(k) if strings.HasPrefix(javaType, "io.fabric8.") { - value.JavaTypeDescriptor = &JavaTypeDescriptor { + value.JavaTypeDescriptor = &JavaTypeDescriptor{ JavaType: javaType, } } else { - value.ExistingJavaTypeDescriptor = &ExistingJavaTypeDescriptor { + value.ExistingJavaTypeDescriptor = &ExistingJavaTypeDescriptor{ ExistingJavaType: javaType, } } @@ -623,7 +623,10 @@ func (g *schemaGenerator) propertyDescriptorForSimpleField(field reflect.StructF } // add description - propertyDescriptor.Description = g.fieldDescription(field) + description := g.fieldDescription(field) + if len(description) > 0 { + propertyDescriptor.Description = description + } return propertyDescriptor } @@ -663,8 +666,8 @@ func (g *schemaGenerator) propertyDescriptorForObject(field reflect.StructField) g.handleType(fieldType) return JSONPropertyDescriptor{ - JSONReferenceDescriptor: g.referenceDescriptor(fieldType), - ExistingJavaTypeDescriptor: g.existingJavaTypeDescriptor(fieldType), + JSONReferenceDescriptor: g.referenceDescriptor(fieldType), + ExistingJavaTypeDescriptor: g.existingJavaTypeDescriptor(fieldType), } } From 1b357527179eb5fd87e0ed0757515a5ed920ca5b Mon Sep 17 00:00:00 2001 From: Chris Laprun Date: Wed, 16 Dec 2020 21:23:56 +0100 Subject: [PATCH 2/4] fix: mark JSONDescriptor.Description field as omitempty --- generator/pkg/schemagen/json.go | 2 +- kubernetes-model-generator/pkg/schemagen/json.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/generator/pkg/schemagen/json.go b/generator/pkg/schemagen/json.go index 3244e15aaf3..0974500d6dc 100644 --- a/generator/pkg/schemagen/json.go +++ b/generator/pkg/schemagen/json.go @@ -26,7 +26,7 @@ type JSONSchema struct { type JSONDescriptor struct { Type string `json:"type"` - Description string `json:"description"` + Description string `json:"description,omitempty"` Default string `json:"default,omitempty"` Required bool `json:"required,omitempty"` Minimum float32 `json:"minimum,omitempty"` diff --git a/kubernetes-model-generator/pkg/schemagen/json.go b/kubernetes-model-generator/pkg/schemagen/json.go index 2d6fd28bde1..a282c5b9c17 100644 --- a/kubernetes-model-generator/pkg/schemagen/json.go +++ b/kubernetes-model-generator/pkg/schemagen/json.go @@ -28,7 +28,7 @@ type JSONSchema struct { type JSONDescriptor struct { Type string `json:"type"` - Description string `json:"description"` + Description string `json:"description,omitempty"` Default string `json:"default,omitempty"` Required bool `json:"required,omitempty"` Minimum float32 `json:"minimum,omitempty"` @@ -84,6 +84,6 @@ type JSONMapDescriptor struct { } type JavaSerDeDescriptor struct { - Serializer string `json:"serializer,omitempty"` - Deserializer string `json:"deserializer,omitempty"` + Serializer string `json:"serializer,omitempty"` + Deserializer string `json:"deserializer,omitempty"` } From e9ab7bbfa31d111d8936bfef833c026aec9a9228 Mon Sep 17 00:00:00 2001 From: Chris Laprun Date: Wed, 16 Dec 2020 21:24:30 +0100 Subject: [PATCH 3/4] feat: re-generate schemas --- .../main/resources/schema/kube-schema.json | 870 +-- .../resources/schema/validation-schema.json | 1523 +--- .../main/resources/schema/kube-schema.json | 796 +- .../resources/schema/validation-schema.json | 1423 +--- .../main/resources/schema/kube-schema.json | 2345 ++---- .../resources/schema/validation-schema.json | 4447 +++-------- .../main/resources/schema/kube-schema.json | 556 +- .../resources/schema/validation-schema.json | 1031 +-- .../main/resources/schema/kube-schema.json | 1370 +--- .../resources/schema/validation-schema.json | 2607 ++----- .../main/resources/schema/kube-schema.json | 340 +- .../resources/schema/validation-schema.json | 647 +- .../main/resources/schema/kube-schema.json | 310 +- .../resources/schema/validation-schema.json | 588 +- .../main/resources/schema/kube-schema.json | 2403 ++---- .../resources/schema/validation-schema.json | 4561 +++-------- .../main/resources/schema/kube-schema.json | 350 +- .../resources/schema/validation-schema.json | 666 +- .../main/resources/schema/kube-schema.json | 354 +- .../resources/schema/validation-schema.json | 674 +- .../main/resources/schema/kube-schema.json | 1550 +--- .../resources/schema/validation-schema.json | 2937 ++----- .../main/resources/schema/kube-schema.json | 334 +- .../resources/schema/validation-schema.json | 633 +- .../main/resources/schema/kube-schema.json | 498 +- .../resources/schema/validation-schema.json | 922 +-- .../main/resources/schema/kube-schema.json | 243 +- .../resources/schema/validation-schema.json | 463 +- .../main/resources/schema/kube-schema.json | 493 +- .../resources/schema/validation-schema.json | 934 +-- .../main/resources/schema/kube-schema.json | 186 +- .../resources/schema/validation-schema.json | 351 +- .../main/resources/schema/kube-schema.json | 330 +- .../resources/schema/validation-schema.json | 629 +- .../main/resources/schema/kube-schema.json | 860 +-- .../resources/schema/validation-schema.json | 1633 ++-- .../main/resources/schema/kube-schema.json | 794 +- .../resources/schema/validation-schema.json | 1512 +--- .../main/resources/schema/kube-schema.json | 326 +- .../resources/schema/validation-schema.json | 612 +- .../main/resources/schema/kube-schema.json | 1620 ++-- .../resources/schema/validation-schema.json | 3093 +++----- .../main/resources/schema/kube-schema.json | 1251 +-- .../resources/schema/validation-schema.json | 2330 ++---- .../main/resources/schema/kube-schema.json | 1931 ++--- .../resources/schema/validation-schema.json | 3680 +++------ .../main/resources/schema/kube-schema.json | 3639 +++------ .../resources/schema/validation-schema.json | 6839 +++++------------ 48 files changed, 18096 insertions(+), 50388 deletions(-) diff --git a/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/kube-schema.json index f933a7466ac..4bdd9133e77 100644 --- a/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_admission_AdmissionRequest": { "type": "object", - "description": "", "properties": { "dryRun": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionKind", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionKind" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "object": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -47,8 +41,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "options": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -63,20 +56,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionResource" }, "requestSubResource": { - "type": "string", - "description": "" + "type": "string" }, "resource": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionResource", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionResource" }, "subResource": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "userInfo": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -91,44 +81,35 @@ }, "kubernetes_admission_AdmissionResponse": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "auditAnnotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "patch": { - "type": "string", - "description": "" + "type": "string" }, "patchType": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/kubernetes_apimachinery_Status", "existingJavaType": "io.fabric8.kubernetes.api.model.Status" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "warnings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -140,17 +121,14 @@ }, "kubernetes_admission_AdmissionReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admission.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "AdmissionReview", "required": true }, @@ -171,14 +149,11 @@ }, "kubernetes_admissionregistration_v1_MutatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -186,16 +161,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -206,12 +178,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", @@ -219,12 +189,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -235,17 +203,14 @@ }, "kubernetes_admissionregistration_v1_MutatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfiguration", "required": true }, @@ -255,7 +220,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_MutatingWebhook", @@ -271,17 +235,14 @@ }, "kubernetes_admissionregistration_v1_MutatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_MutatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.MutatingWebhookConfiguration" @@ -289,7 +250,6 @@ }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfigurationList", "required": true }, @@ -307,38 +267,30 @@ }, "kubernetes_admissionregistration_v1_Rule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -349,47 +301,37 @@ }, "kubernetes_admissionregistration_v1_RuleWithOperations": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -400,23 +342,18 @@ }, "kubernetes_admissionregistration_v1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -427,14 +364,11 @@ }, "kubernetes_admissionregistration_v1_ValidatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -442,16 +376,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -463,7 +394,6 @@ }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", @@ -471,12 +401,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -487,17 +415,14 @@ }, "kubernetes_admissionregistration_v1_ValidatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfiguration", "required": true }, @@ -507,7 +432,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ValidatingWebhook", @@ -523,17 +447,14 @@ }, "kubernetes_admissionregistration_v1_ValidatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ValidatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.ValidatingWebhookConfiguration" @@ -541,7 +462,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfigurationList", "required": true }, @@ -559,19 +479,16 @@ }, "kubernetes_admissionregistration_v1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -582,15 +499,12 @@ }, "kubernetes_admissionregistration_v1beta1_MutatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -598,16 +512,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -618,12 +529,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_RuleWithOperations", @@ -631,12 +540,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -647,17 +554,14 @@ }, "kubernetes_admissionregistration_v1beta1_MutatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfiguration", "required": true }, @@ -667,7 +571,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_MutatingWebhook", @@ -683,17 +586,14 @@ }, "kubernetes_admissionregistration_v1beta1_MutatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_MutatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.MutatingWebhookConfiguration" @@ -701,7 +601,6 @@ }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfigurationList", "required": true }, @@ -719,38 +618,30 @@ }, "kubernetes_admissionregistration_v1beta1_Rule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -761,47 +652,37 @@ }, "kubernetes_admissionregistration_v1beta1_RuleWithOperations": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -812,23 +693,18 @@ }, "kubernetes_admissionregistration_v1beta1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -839,15 +715,12 @@ }, "kubernetes_admissionregistration_v1beta1_ValidatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -855,16 +728,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -876,7 +746,6 @@ }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_RuleWithOperations", @@ -884,12 +753,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -900,17 +767,14 @@ }, "kubernetes_admissionregistration_v1beta1_ValidatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfiguration", "required": true }, @@ -920,7 +784,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_ValidatingWebhook", @@ -936,17 +799,14 @@ }, "kubernetes_admissionregistration_v1beta1_ValidatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_ValidatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.ValidatingWebhookConfiguration" @@ -954,7 +814,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfigurationList", "required": true }, @@ -972,19 +831,16 @@ }, "kubernetes_admissionregistration_v1beta1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -995,23 +851,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1019,7 +871,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1028,7 +879,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1043,17 +893,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1061,7 +908,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1074,30 +920,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1110,45 +950,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1159,7 +991,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -1168,23 +999,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1195,15 +1022,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1214,19 +1038,15 @@ }, "kubernetes_apimachinery_GroupVersionKind": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1237,19 +1057,15 @@ }, "kubernetes_apimachinery_GroupVersionResource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1260,11 +1076,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -1273,10 +1087,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1289,23 +1101,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1317,17 +1124,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1335,7 +1139,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1353,24 +1156,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1381,57 +1179,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1442,27 +1228,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1477,20 +1258,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1498,7 +1275,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1507,34 +1283,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1542,18 +1311,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1561,16 +1327,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1581,31 +1344,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1616,7 +1372,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -1625,34 +1380,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1665,15 +1413,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1684,14 +1429,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1703,15 +1445,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1722,17 +1461,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1740,25 +1476,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1769,19 +1501,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1792,11 +1520,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -1804,24 +1530,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1832,11 +1553,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1847,15 +1566,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1866,30 +1582,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -1902,7 +1612,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -1911,7 +1620,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -1920,43 +1628,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1967,17 +1665,14 @@ }, "kubernetes_authentication_TokenReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authentication.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TokenReview", "required": true }, @@ -2002,20 +1697,16 @@ }, "kubernetes_authentication_TokenReviewSpec": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "token": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2026,24 +1717,19 @@ }, "kubernetes_authentication_TokenReviewStatus": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "authenticated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -2058,37 +1744,29 @@ }, "kubernetes_authentication_UserInfo": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2099,17 +1777,14 @@ }, "kubernetes_authorization_v1_LocalSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, @@ -2135,15 +1810,12 @@ }, "kubernetes_authorization_v1_NonResourceAttributes": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2154,23 +1826,18 @@ }, "kubernetes_authorization_v1_NonResourceRule": { "type": "object", - "description": "", "properties": { "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2182,35 +1849,27 @@ }, "kubernetes_authorization_v1_ResourceAttributes": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "subresource": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2221,41 +1880,32 @@ }, "kubernetes_authorization_v1_ResourceRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2267,17 +1917,14 @@ }, "kubernetes_authorization_v1_SelfSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectAccessReview", "required": true }, @@ -2302,7 +1949,6 @@ }, "kubernetes_authorization_v1_SelfSubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "nonResourceAttributes": { "$ref": "#/definitions/kubernetes_authorization_v1_NonResourceAttributes", @@ -2321,17 +1967,14 @@ }, "kubernetes_authorization_v1_SelfSubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -2356,11 +1999,9 @@ }, "kubernetes_authorization_v1_SelfSubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2371,17 +2012,14 @@ }, "kubernetes_authorization_v1_SubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, @@ -2406,28 +2044,22 @@ }, "kubernetes_authorization_v1_SubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceAttributes": { @@ -2439,12 +2071,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.ResourceAttributes" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2455,23 +2085,18 @@ }, "kubernetes_authorization_v1_SubjectAccessReviewStatus": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "denied": { - "type": "boolean", - "description": "" + "type": "boolean" }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2482,19 +2107,15 @@ }, "kubernetes_authorization_v1_SubjectRulesReviewStatus": { "type": "object", - "description": "", "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "incomplete": { - "type": "boolean", - "description": "" + "type": "boolean" }, "nonResourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1_NonResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.NonResourceRule" @@ -2502,7 +2123,6 @@ }, "resourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1_ResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.ResourceRule" @@ -2517,17 +2137,14 @@ }, "kubernetes_authorization_v1beta1_LocalSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, @@ -2553,15 +2170,12 @@ }, "kubernetes_authorization_v1beta1_NonResourceAttributes": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2572,23 +2186,18 @@ }, "kubernetes_authorization_v1beta1_NonResourceRule": { "type": "object", - "description": "", "properties": { "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2600,35 +2209,27 @@ }, "kubernetes_authorization_v1beta1_ResourceAttributes": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "subresource": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2639,41 +2240,32 @@ }, "kubernetes_authorization_v1beta1_ResourceRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2685,17 +2277,14 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectAccessReview", "required": true }, @@ -2720,7 +2309,6 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "nonResourceAttributes": { "$ref": "#/definitions/kubernetes_authorization_v1beta1_NonResourceAttributes", @@ -2739,17 +2327,14 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -2774,11 +2359,9 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2789,17 +2372,14 @@ }, "kubernetes_authorization_v1beta1_SubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, @@ -2824,28 +2404,22 @@ }, "kubernetes_authorization_v1beta1_SubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "group": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceAttributes": { @@ -2857,12 +2431,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceAttributes" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2873,23 +2445,18 @@ }, "kubernetes_authorization_v1beta1_SubjectAccessReviewStatus": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "denied": { - "type": "boolean", - "description": "" + "type": "boolean" }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2900,19 +2467,15 @@ }, "kubernetes_authorization_v1beta1_SubjectRulesReviewStatus": { "type": "object", - "description": "", "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "incomplete": { - "type": "boolean", - "description": "" + "type": "boolean" }, "nonResourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1beta1_NonResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.NonResourceRule" @@ -2920,7 +2483,6 @@ }, "resourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1beta1_ResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceRule" @@ -3001,8 +2563,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "Operation": { - "type": "string", - "description": "" + "type": "string" }, "Patch": { "$ref": "#/definitions/kubernetes_apimachinery_Patch", @@ -3013,8 +2574,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PatchOptions" }, "PatchType": { - "type": "string", - "description": "" + "type": "string" }, "Quantity": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", diff --git a/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/validation-schema.json index 9b8d2f655f2..1393efe9ea3 100644 --- a/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-admissionregistration/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_admission_AdmissionRequest": { "type": "object", - "description": "", "properties": { "dryRun": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionKind", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionKind" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "object": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -47,8 +41,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "options": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -63,20 +56,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionResource" }, "requestSubResource": { - "type": "string", - "description": "" + "type": "string" }, "resource": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionResource", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionResource" }, "subResource": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "userInfo": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -91,44 +81,35 @@ }, "kubernetes_admission_AdmissionResponse": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "auditAnnotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "patch": { - "type": "string", - "description": "" + "type": "string" }, "patchType": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/kubernetes_apimachinery_Status", "existingJavaType": "io.fabric8.kubernetes.api.model.Status" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "warnings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -140,17 +121,14 @@ }, "kubernetes_admission_AdmissionReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admission.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "AdmissionReview", "required": true }, @@ -171,14 +149,11 @@ }, "kubernetes_admissionregistration_v1_MutatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -186,16 +161,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -206,12 +178,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", @@ -219,12 +189,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -235,17 +203,14 @@ }, "kubernetes_admissionregistration_v1_MutatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfiguration", "required": true }, @@ -255,7 +220,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_MutatingWebhook", @@ -271,17 +235,14 @@ }, "kubernetes_admissionregistration_v1_MutatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_MutatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.MutatingWebhookConfiguration" @@ -289,7 +250,6 @@ }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfigurationList", "required": true }, @@ -307,38 +267,30 @@ }, "kubernetes_admissionregistration_v1_Rule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -349,47 +301,37 @@ }, "kubernetes_admissionregistration_v1_RuleWithOperations": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -400,23 +342,18 @@ }, "kubernetes_admissionregistration_v1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -427,14 +364,11 @@ }, "kubernetes_admissionregistration_v1_ValidatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -442,16 +376,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -463,7 +394,6 @@ }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", @@ -471,12 +401,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -487,17 +415,14 @@ }, "kubernetes_admissionregistration_v1_ValidatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfiguration", "required": true }, @@ -507,7 +432,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ValidatingWebhook", @@ -523,17 +447,14 @@ }, "kubernetes_admissionregistration_v1_ValidatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ValidatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.ValidatingWebhookConfiguration" @@ -541,7 +462,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfigurationList", "required": true }, @@ -559,19 +479,16 @@ }, "kubernetes_admissionregistration_v1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -582,15 +499,12 @@ }, "kubernetes_admissionregistration_v1beta1_MutatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -598,16 +512,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -618,12 +529,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_RuleWithOperations", @@ -631,12 +540,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -647,17 +554,14 @@ }, "kubernetes_admissionregistration_v1beta1_MutatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfiguration", "required": true }, @@ -667,7 +571,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_MutatingWebhook", @@ -683,17 +586,14 @@ }, "kubernetes_admissionregistration_v1beta1_MutatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_MutatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.MutatingWebhookConfiguration" @@ -701,7 +601,6 @@ }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfigurationList", "required": true }, @@ -719,38 +618,30 @@ }, "kubernetes_admissionregistration_v1beta1_Rule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -761,47 +652,37 @@ }, "kubernetes_admissionregistration_v1beta1_RuleWithOperations": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -812,23 +693,18 @@ }, "kubernetes_admissionregistration_v1beta1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -839,15 +715,12 @@ }, "kubernetes_admissionregistration_v1beta1_ValidatingWebhook": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { @@ -855,16 +728,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -876,7 +746,6 @@ }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_RuleWithOperations", @@ -884,12 +753,10 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -900,17 +767,14 @@ }, "kubernetes_admissionregistration_v1beta1_ValidatingWebhookConfiguration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfiguration", "required": true }, @@ -920,7 +784,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_ValidatingWebhook", @@ -936,17 +799,14 @@ }, "kubernetes_admissionregistration_v1beta1_ValidatingWebhookConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_ValidatingWebhookConfiguration", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.ValidatingWebhookConfiguration" @@ -954,7 +814,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfigurationList", "required": true }, @@ -972,19 +831,16 @@ }, "kubernetes_admissionregistration_v1beta1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -995,23 +851,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1019,7 +871,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1028,7 +879,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1043,17 +893,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1061,7 +908,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1074,30 +920,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1110,45 +950,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1159,7 +991,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -1168,23 +999,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1195,15 +1022,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1214,19 +1038,15 @@ }, "kubernetes_apimachinery_GroupVersionKind": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1237,19 +1057,15 @@ }, "kubernetes_apimachinery_GroupVersionResource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1260,11 +1076,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -1273,10 +1087,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1289,23 +1101,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1317,17 +1124,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1335,7 +1139,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1353,24 +1156,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1381,57 +1179,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1442,27 +1228,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1477,20 +1258,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1498,7 +1275,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1507,34 +1283,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1542,18 +1311,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1561,16 +1327,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1581,31 +1344,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1616,7 +1372,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -1625,34 +1380,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1665,15 +1413,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1684,14 +1429,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1703,15 +1445,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1722,17 +1461,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1740,25 +1476,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1769,19 +1501,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1792,11 +1520,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -1804,24 +1530,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1832,11 +1553,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1847,15 +1566,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1866,30 +1582,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -1902,7 +1612,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -1911,7 +1620,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -1920,43 +1628,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1967,17 +1665,14 @@ }, "kubernetes_authentication_TokenReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authentication.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TokenReview", "required": true }, @@ -2002,20 +1697,16 @@ }, "kubernetes_authentication_TokenReviewSpec": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "token": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2026,24 +1717,19 @@ }, "kubernetes_authentication_TokenReviewStatus": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "authenticated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -2058,37 +1744,29 @@ }, "kubernetes_authentication_UserInfo": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2099,17 +1777,14 @@ }, "kubernetes_authorization_v1_LocalSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, @@ -2135,15 +1810,12 @@ }, "kubernetes_authorization_v1_NonResourceAttributes": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2154,23 +1826,18 @@ }, "kubernetes_authorization_v1_NonResourceRule": { "type": "object", - "description": "", "properties": { "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2182,35 +1849,27 @@ }, "kubernetes_authorization_v1_ResourceAttributes": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "subresource": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2221,41 +1880,32 @@ }, "kubernetes_authorization_v1_ResourceRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2267,17 +1917,14 @@ }, "kubernetes_authorization_v1_SelfSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectAccessReview", "required": true }, @@ -2302,7 +1949,6 @@ }, "kubernetes_authorization_v1_SelfSubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "nonResourceAttributes": { "$ref": "#/definitions/kubernetes_authorization_v1_NonResourceAttributes", @@ -2321,17 +1967,14 @@ }, "kubernetes_authorization_v1_SelfSubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -2356,11 +1999,9 @@ }, "kubernetes_authorization_v1_SelfSubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2371,17 +2012,14 @@ }, "kubernetes_authorization_v1_SubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, @@ -2406,28 +2044,22 @@ }, "kubernetes_authorization_v1_SubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceAttributes": { @@ -2439,12 +2071,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.ResourceAttributes" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2455,23 +2085,18 @@ }, "kubernetes_authorization_v1_SubjectAccessReviewStatus": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "denied": { - "type": "boolean", - "description": "" + "type": "boolean" }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2482,19 +2107,15 @@ }, "kubernetes_authorization_v1_SubjectRulesReviewStatus": { "type": "object", - "description": "", "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "incomplete": { - "type": "boolean", - "description": "" + "type": "boolean" }, "nonResourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1_NonResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.NonResourceRule" @@ -2502,7 +2123,6 @@ }, "resourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1_ResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.ResourceRule" @@ -2517,17 +2137,14 @@ }, "kubernetes_authorization_v1beta1_LocalSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, @@ -2553,15 +2170,12 @@ }, "kubernetes_authorization_v1beta1_NonResourceAttributes": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2572,23 +2186,18 @@ }, "kubernetes_authorization_v1beta1_NonResourceRule": { "type": "object", - "description": "", "properties": { "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2600,35 +2209,27 @@ }, "kubernetes_authorization_v1beta1_ResourceAttributes": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "subresource": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2639,41 +2240,32 @@ }, "kubernetes_authorization_v1beta1_ResourceRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2685,17 +2277,14 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectAccessReview", "required": true }, @@ -2720,7 +2309,6 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "nonResourceAttributes": { "$ref": "#/definitions/kubernetes_authorization_v1beta1_NonResourceAttributes", @@ -2739,17 +2327,14 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -2774,11 +2359,9 @@ }, "kubernetes_authorization_v1beta1_SelfSubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2789,17 +2372,14 @@ }, "kubernetes_authorization_v1beta1_SubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, @@ -2824,28 +2404,22 @@ }, "kubernetes_authorization_v1beta1_SubjectAccessReviewSpec": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "group": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceAttributes": { @@ -2857,12 +2431,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceAttributes" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2873,23 +2445,18 @@ }, "kubernetes_authorization_v1beta1_SubjectAccessReviewStatus": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "denied": { - "type": "boolean", - "description": "" + "type": "boolean" }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2900,19 +2467,15 @@ }, "kubernetes_authorization_v1beta1_SubjectRulesReviewStatus": { "type": "object", - "description": "", "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "incomplete": { - "type": "boolean", - "description": "" + "type": "boolean" }, "nonResourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1beta1_NonResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.NonResourceRule" @@ -2920,7 +2483,6 @@ }, "resourceRules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_authorization_v1beta1_ResourceRule", "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceRule" @@ -3001,8 +2563,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "Operation": { - "type": "string", - "description": "" + "type": "string" }, "Patch": { "$ref": "#/definitions/kubernetes_apimachinery_Patch", @@ -3013,8 +2574,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PatchOptions" }, "PatchType": { - "type": "string", - "description": "" + "type": "string" }, "Quantity": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -3122,20 +2682,17 @@ "admissionrequest": { "properties": { "dryRun": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionKind", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionKind" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "object": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3146,8 +2703,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "options": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3162,20 +2718,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionResource" }, "requestSubResource": { - "type": "string", - "description": "" + "type": "string" }, "resource": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionResource", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionResource" }, "subResource": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "userInfo": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -3187,41 +2740,33 @@ "admissionresponse": { "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "auditAnnotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "patch": { - "type": "string", - "description": "" + "type": "string" }, "patchType": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/kubernetes_apimachinery_Status", "existingJavaType": "io.fabric8.kubernetes.api.model.Status" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "warnings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3231,13 +2776,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admission.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "AdmissionReview", "required": true }, @@ -3256,19 +2799,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -3276,7 +2816,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -3285,7 +2824,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -3298,13 +2836,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -3312,7 +2848,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -3323,26 +2858,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -3353,41 +2883,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3399,19 +2922,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3419,12 +2939,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3432,16 +2950,13 @@ "groupversionkind": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3449,16 +2964,13 @@ "groupversionresource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3469,40 +2981,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3511,7 +3014,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -3520,10 +3022,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -3533,20 +3033,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3556,13 +3052,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -3570,7 +3064,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -3584,21 +3077,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3606,54 +3095,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3662,13 +3140,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "authorization.k8s.io/v1beta1", + "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, @@ -3677,12 +3153,12 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "spec": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_SubjectAccessReviewSpec", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReviewSpec" + "$ref": "#/definitions/kubernetes_authorization_v1_SubjectAccessReviewSpec", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.SubjectAccessReviewSpec" }, "status": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_SubjectAccessReviewStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReviewStatus" + "$ref": "#/definitions/kubernetes_authorization_v1_SubjectAccessReviewStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.SubjectAccessReviewStatus" } }, "additionalProperties": true @@ -3690,24 +3166,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3720,28 +3192,22 @@ "properties": { "admissionReviewVersions": { "type": "array", - "description": "", - "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { - "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_WebhookClientConfig", - "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.WebhookClientConfig" + "$ref": "#/definitions/kubernetes_admissionregistration_v1_WebhookClientConfig", + "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3752,25 +3218,21 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_RuleWithOperations", - "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.RuleWithOperations" + "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", + "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.RuleWithOperations" } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -3779,13 +3241,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfiguration", "required": true }, @@ -3795,7 +3255,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_MutatingWebhook", @@ -3809,21 +3268,18 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "admissionregistration.k8s.io/v1beta1", + "default": "admissionregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { - "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_MutatingWebhookConfiguration", - "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.MutatingWebhookConfiguration" + "$ref": "#/definitions/kubernetes_admissionregistration_v1_MutatingWebhookConfiguration", + "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.MutatingWebhookConfiguration" } }, "kind": { "type": "string", - "description": "", "default": "MutatingWebhookConfigurationList", "required": true }, @@ -3837,12 +3293,10 @@ "nonresourceattributes": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3851,19 +3305,15 @@ "properties": { "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3873,16 +3323,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3890,7 +3337,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -3899,34 +3345,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -3934,18 +3373,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -3953,16 +3389,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3970,28 +3403,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4003,30 +3430,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -4036,12 +3457,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4049,8 +3468,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4061,32 +3479,25 @@ "resourceattributes": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "subresource": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4095,37 +3506,29 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4135,10 +3538,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4148,34 +3549,27 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4184,43 +3578,34 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4229,13 +3614,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "authorization.k8s.io/v1beta1", + "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectAccessReview", "required": true }, @@ -4244,12 +3627,12 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "spec": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_SelfSubjectAccessReviewSpec", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.SelfSubjectAccessReviewSpec" + "$ref": "#/definitions/kubernetes_authorization_v1_SelfSubjectAccessReviewSpec", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.SelfSubjectAccessReviewSpec" }, "status": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_SubjectAccessReviewStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReviewStatus" + "$ref": "#/definitions/kubernetes_authorization_v1_SubjectAccessReviewStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.SubjectAccessReviewStatus" } }, "additionalProperties": true @@ -4271,13 +3654,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -4299,8 +3680,7 @@ "selfsubjectrulesreviewspec": { "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4308,12 +3688,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4321,20 +3699,16 @@ "servicereference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -4343,13 +3717,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -4357,25 +3729,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4383,16 +3751,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4401,7 +3766,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -4409,24 +3773,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4435,13 +3794,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "authorization.k8s.io/v1beta1", + "default": "authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, @@ -4450,12 +3807,12 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "spec": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_SubjectAccessReviewSpec", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReviewSpec" + "$ref": "#/definitions/kubernetes_authorization_v1_SubjectAccessReviewSpec", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.SubjectAccessReviewSpec" }, "status": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_SubjectAccessReviewStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.SubjectAccessReviewStatus" + "$ref": "#/definitions/kubernetes_authorization_v1_SubjectAccessReviewStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.SubjectAccessReviewStatus" } }, "additionalProperties": true @@ -4464,41 +3821,34 @@ "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, - "group": { + "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceAttributes": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_NonResourceAttributes", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.NonResourceAttributes" + "$ref": "#/definitions/kubernetes_authorization_v1_NonResourceAttributes", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.NonResourceAttributes" }, "resourceAttributes": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_ResourceAttributes", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceAttributes" + "$ref": "#/definitions/kubernetes_authorization_v1_ResourceAttributes", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.ResourceAttributes" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4506,20 +3856,16 @@ "subjectaccessreviewstatus": { "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "denied": { - "type": "boolean", - "description": "" + "type": "boolean" }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4527,27 +3873,23 @@ "subjectrulesreviewstatus": { "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "incomplete": { - "type": "boolean", - "description": "" + "type": "boolean" }, "nonResourceRules": { "type": "array", - "description": "", "items": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_NonResourceRule", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.NonResourceRule" + "$ref": "#/definitions/kubernetes_authorization_v1_NonResourceRule", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.NonResourceRule" } }, "resourceRules": { "type": "array", - "description": "", "items": { - "$ref": "#/definitions/kubernetes_authorization_v1beta1_ResourceRule", - "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1beta1.ResourceRule" + "$ref": "#/definitions/kubernetes_authorization_v1_ResourceRule", + "existingJavaType": "io.fabric8.kubernetes.api.model.authorization.v1.ResourceRule" } } }, @@ -4556,8 +3898,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4566,13 +3907,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authentication.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TokenReview", "required": true }, @@ -4595,16 +3934,13 @@ "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "token": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4613,20 +3949,16 @@ "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "authenticated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -4638,12 +3970,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4652,26 +3982,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -4682,33 +4007,26 @@ "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4717,28 +4035,22 @@ "properties": { "admissionReviewVersions": { "type": "array", - "description": "", - "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "clientConfig": { - "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_WebhookClientConfig", - "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.WebhookClientConfig" + "$ref": "#/definitions/kubernetes_admissionregistration_v1_WebhookClientConfig", + "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.WebhookClientConfig" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4750,20 +4062,17 @@ }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_RuleWithOperations", - "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.RuleWithOperations" + "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", + "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.RuleWithOperations" } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -4772,13 +4081,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "admissionregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfiguration", "required": true }, @@ -4788,7 +4095,6 @@ }, "webhooks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ValidatingWebhook", @@ -4802,21 +4108,18 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "admissionregistration.k8s.io/v1beta1", + "default": "admissionregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { - "$ref": "#/definitions/kubernetes_admissionregistration_v1beta1_ValidatingWebhookConfiguration", - "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1beta1.ValidatingWebhookConfiguration" + "$ref": "#/definitions/kubernetes_admissionregistration_v1_ValidatingWebhookConfiguration", + "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.ValidatingWebhookConfiguration" } }, "kind": { "type": "string", - "description": "", "default": "ValidatingWebhookConfigurationList", "required": true }, @@ -4830,16 +4133,14 @@ "webhookclientconfig": { "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.admissionregistration.v1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/kube-schema.json index 8cc49754c96..63d7af1c8c1 100644 --- a/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,31 +18,24 @@ }, "kubernetes_apiextensions_v1_CustomResourceColumnDefinition": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "jsonPath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -55,11 +46,9 @@ }, "kubernetes_apiextensions_v1_CustomResourceConversion": { "type": "object", - "description": "", "properties": { "strategy": { - "type": "string", - "description": "" + "type": "string" }, "webhook": { "$ref": "#/definitions/kubernetes_apiextensions_v1_WebhookConversion", @@ -74,17 +63,14 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinition": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinition", "required": true }, @@ -109,27 +95,22 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -140,17 +121,14 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinition" @@ -158,7 +136,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinitionList", "required": true }, @@ -176,41 +153,32 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionNames": { "type": "object", - "description": "", "properties": { "categories": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "listKind": { - "type": "string", - "description": "" + "type": "string" }, "plural": { - "type": "string", - "description": "" + "type": "string" }, "shortNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "singular": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,31 +189,26 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionSpec": { "type": "object", - "description": "", "properties": { "conversion": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceConversion", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceConversion" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "names": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionNames", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionNames" }, "preserveUnknownFields": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scope": { - "type": "string", - "description": "" + "type": "string" }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionVersion", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionVersion" @@ -260,7 +223,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionStatus": { "type": "object", - "description": "", "properties": { "acceptedNames": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionNames", @@ -268,7 +230,6 @@ }, "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionCondition" @@ -276,10 +237,8 @@ }, "storedVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -291,11 +250,9 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionVersion": { "type": "object", - "description": "", "properties": { "additionalPrinterColumns": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceColumnDefinition", @@ -303,28 +260,23 @@ } }, "deprecated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "deprecationWarning": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceValidation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceValidation" }, "served": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storage": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subresources": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceSubresources", @@ -339,19 +291,15 @@ }, "kubernetes_apiextensions_v1_CustomResourceSubresourceScale": { "type": "object", - "description": "", "properties": { "labelSelectorPath": { - "type": "string", - "description": "" + "type": "string" }, "specReplicasPath": { - "type": "string", - "description": "" + "type": "string" }, "statusReplicasPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -362,7 +310,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceSubresourceStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceSubresourceStatus", "javaInterfaces": [ @@ -371,7 +318,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceSubresources": { "type": "object", - "description": "", "properties": { "scale": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceSubresourceScale", @@ -390,7 +336,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceValidation": { "type": "object", - "description": "", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -405,15 +350,12 @@ }, "kubernetes_apiextensions_v1_ExternalDocumentation": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -424,11 +366,9 @@ }, "kubernetes_apiextensions_v1_JSON": { "type": "object", - "description": "", "properties": { "Raw": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -439,15 +379,12 @@ }, "kubernetes_apiextensions_v1_JSONSchemaProps": { "type": "object", - "description": "", "properties": { "$ref": { - "type": "string", - "description": "" + "type": "string" }, "$schema": { - "type": "string", - "description": "" + "type": "string" }, "additionalItems": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrBool", @@ -459,7 +396,6 @@ }, "allOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -468,7 +404,6 @@ }, "anyOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -481,7 +416,6 @@ }, "definitions": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -490,7 +424,6 @@ }, "dependencies": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrStringArray", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrStringArray" @@ -498,12 +431,10 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrStringArray\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "enum": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSON", @@ -515,24 +446,20 @@ "existingJavaType": "com.fasterxml.jackson.databind.JsonNode" }, "exclusiveMaximum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "exclusiveMinimum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/kubernetes_apiextensions_v1_ExternalDocumentation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.ExternalDocumentation" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "id": { - "type": "string", - "description": "" + "type": "string" }, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrArray", @@ -540,57 +467,46 @@ }, "maxItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maximum": { - "type": "number", - "description": "" + "type": "number" }, "minItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minimum": { - "type": "number", - "description": "" + "type": "number" }, "multipleOf": { - "type": "number", - "description": "" + "type": "number" }, "not": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" }, "nullable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oneOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -598,12 +514,10 @@ } }, "pattern": { - "type": "string", - "description": "" + "type": "string" }, "patternProperties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -612,7 +526,6 @@ }, "properties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -621,53 +534,41 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "title": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "uniqueItems": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-embedded-resource": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-int-or-string": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-list-map-keys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "x-kubernetes-list-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-map-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-preserve-unknown-fields": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": false, @@ -678,11 +579,9 @@ }, "kubernetes_apiextensions_v1_JSONSchemaPropsOrArray": { "type": "object", - "description": "", "properties": { "JSONSchemas": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -703,11 +602,9 @@ }, "kubernetes_apiextensions_v1_JSONSchemaPropsOrBool": { "type": "object", - "description": "", "properties": { "Allows": { - "type": "boolean", - "description": "" + "type": "boolean" }, "Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -724,14 +621,11 @@ }, "kubernetes_apiextensions_v1_JSONSchemaPropsOrStringArray": { "type": "object", - "description": "", "properties": { "Property": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "Schema": { @@ -749,23 +643,18 @@ }, "kubernetes_apiextensions_v1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -776,19 +665,16 @@ }, "kubernetes_apiextensions_v1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_apiextensions_v1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -799,7 +685,6 @@ }, "kubernetes_apiextensions_v1_WebhookConversion": { "type": "object", - "description": "", "properties": { "clientConfig": { "$ref": "#/definitions/kubernetes_apiextensions_v1_WebhookClientConfig", @@ -807,10 +692,8 @@ }, "conversionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -822,31 +705,24 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition": { "type": "object", - "description": "", "properties": { "JSONPath": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -857,20 +733,16 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceConversion": { "type": "object", - "description": "", "properties": { "conversionReviewVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "strategy": { - "type": "string", - "description": "" + "type": "string" }, "webhookClientConfig": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_WebhookClientConfig", @@ -885,17 +757,14 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinition": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinition", "required": true }, @@ -920,27 +789,22 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -951,17 +815,14 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinition" @@ -969,7 +830,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinitionList", "required": true }, @@ -987,41 +847,32 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames": { "type": "object", - "description": "", "properties": { "categories": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "listKind": { - "type": "string", - "description": "" + "type": "string" }, "plural": { - "type": "string", - "description": "" + "type": "string" }, "shortNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "singular": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1032,11 +883,9 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionSpec": { "type": "object", - "description": "", "properties": { "additionalPrinterColumns": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition", @@ -1048,20 +897,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceConversion" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "names": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionNames" }, "preserveUnknownFields": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scope": { - "type": "string", - "description": "" + "type": "string" }, "subresources": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresources", @@ -1072,12 +918,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceValidation" }, "version": { - "type": "string", - "description": "" + "type": "string" }, "versions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionVersion", @@ -1093,7 +937,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionStatus": { "type": "object", - "description": "", "properties": { "acceptedNames": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames", @@ -1101,7 +944,6 @@ }, "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionCondition" @@ -1109,10 +951,8 @@ }, "storedVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1124,11 +964,9 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionVersion": { "type": "object", - "description": "", "properties": { "additionalPrinterColumns": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition", @@ -1136,28 +974,23 @@ } }, "deprecated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "deprecationWarning": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceValidation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceValidation" }, "served": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storage": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subresources": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresources", @@ -1172,19 +1005,15 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceSubresourceScale": { "type": "object", - "description": "", "properties": { "labelSelectorPath": { - "type": "string", - "description": "" + "type": "string" }, "specReplicasPath": { - "type": "string", - "description": "" + "type": "string" }, "statusReplicasPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1195,7 +1024,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceSubresourceStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceSubresourceStatus", "javaInterfaces": [ @@ -1204,7 +1032,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceSubresources": { "type": "object", - "description": "", "properties": { "scale": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresourceScale", @@ -1223,7 +1050,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceValidation": { "type": "object", - "description": "", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1238,15 +1064,12 @@ }, "kubernetes_apiextensions_v1beta1_ExternalDocumentation": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1257,11 +1080,9 @@ }, "kubernetes_apiextensions_v1beta1_JSON": { "type": "object", - "description": "", "properties": { "Raw": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1272,15 +1093,12 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaProps": { "type": "object", - "description": "", "properties": { "$ref": { - "type": "string", - "description": "" + "type": "string" }, "$schema": { - "type": "string", - "description": "" + "type": "string" }, "additionalItems": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrBool", @@ -1292,7 +1110,6 @@ }, "allOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1301,7 +1118,6 @@ }, "anyOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1314,7 +1130,6 @@ }, "definitions": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1323,7 +1138,6 @@ }, "dependencies": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrStringArray", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrStringArray" @@ -1331,12 +1145,10 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrStringArray\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "enum": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSON", @@ -1348,24 +1160,20 @@ "existingJavaType": "com.fasterxml.jackson.databind.JsonNode" }, "exclusiveMaximum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "exclusiveMinimum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_ExternalDocumentation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.ExternalDocumentation" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "id": { - "type": "string", - "description": "" + "type": "string" }, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrArray", @@ -1373,57 +1181,46 @@ }, "maxItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maximum": { - "type": "number", - "description": "" + "type": "number" }, "minItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minimum": { - "type": "number", - "description": "" + "type": "number" }, "multipleOf": { - "type": "number", - "description": "" + "type": "number" }, "not": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" }, "nullable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oneOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1431,12 +1228,10 @@ } }, "pattern": { - "type": "string", - "description": "" + "type": "string" }, "patternProperties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1445,7 +1240,6 @@ }, "properties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1454,53 +1248,41 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "title": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "uniqueItems": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-embedded-resource": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-int-or-string": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-list-map-keys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "x-kubernetes-list-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-map-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-preserve-unknown-fields": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": false, @@ -1511,11 +1293,9 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrArray": { "type": "object", - "description": "", "properties": { "JSONSchemas": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1536,11 +1316,9 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrBool": { "type": "object", - "description": "", "properties": { "Allows": { - "type": "boolean", - "description": "" + "type": "boolean" }, "Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1557,14 +1335,11 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrStringArray": { "type": "object", - "description": "", "properties": { "Property": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "Schema": { @@ -1582,23 +1357,18 @@ }, "kubernetes_apiextensions_v1beta1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1609,19 +1379,16 @@ }, "kubernetes_apiextensions_v1beta1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1632,23 +1399,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1656,7 +1419,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1665,7 +1427,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1680,17 +1441,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1698,7 +1456,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1711,30 +1468,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1747,45 +1498,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1796,7 +1539,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -1805,23 +1547,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1832,15 +1570,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1851,17 +1586,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1869,7 +1601,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1887,24 +1618,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1915,57 +1641,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1976,27 +1690,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2011,20 +1720,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2032,7 +1737,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -2041,34 +1745,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -2076,18 +1773,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -2095,16 +1789,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2115,31 +1806,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2150,7 +1834,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -2159,34 +1842,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -2199,15 +1875,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2218,14 +1891,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2237,15 +1907,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2256,17 +1923,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -2274,25 +1938,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2303,19 +1963,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2326,11 +1982,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -2338,24 +1992,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2366,11 +2015,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2381,15 +2028,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2400,30 +2044,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -2436,7 +2074,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -2445,7 +2082,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -2454,43 +2090,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2501,35 +2127,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/validation-schema.json index 75fa1fe956a..04034231092 100644 --- a/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-apiextensions/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,31 +18,24 @@ }, "kubernetes_apiextensions_v1_CustomResourceColumnDefinition": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "jsonPath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -55,11 +46,9 @@ }, "kubernetes_apiextensions_v1_CustomResourceConversion": { "type": "object", - "description": "", "properties": { "strategy": { - "type": "string", - "description": "" + "type": "string" }, "webhook": { "$ref": "#/definitions/kubernetes_apiextensions_v1_WebhookConversion", @@ -74,17 +63,14 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinition": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinition", "required": true }, @@ -109,27 +95,22 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -140,17 +121,14 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinition" @@ -158,7 +136,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinitionList", "required": true }, @@ -176,41 +153,32 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionNames": { "type": "object", - "description": "", "properties": { "categories": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "listKind": { - "type": "string", - "description": "" + "type": "string" }, "plural": { - "type": "string", - "description": "" + "type": "string" }, "shortNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "singular": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,31 +189,26 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionSpec": { "type": "object", - "description": "", "properties": { "conversion": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceConversion", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceConversion" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "names": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionNames", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionNames" }, "preserveUnknownFields": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scope": { - "type": "string", - "description": "" + "type": "string" }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionVersion", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionVersion" @@ -260,7 +223,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionStatus": { "type": "object", - "description": "", "properties": { "acceptedNames": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionNames", @@ -268,7 +230,6 @@ }, "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionCondition" @@ -276,10 +237,8 @@ }, "storedVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -291,11 +250,9 @@ }, "kubernetes_apiextensions_v1_CustomResourceDefinitionVersion": { "type": "object", - "description": "", "properties": { "additionalPrinterColumns": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceColumnDefinition", @@ -303,28 +260,23 @@ } }, "deprecated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "deprecationWarning": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceValidation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceValidation" }, "served": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storage": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subresources": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceSubresources", @@ -339,19 +291,15 @@ }, "kubernetes_apiextensions_v1_CustomResourceSubresourceScale": { "type": "object", - "description": "", "properties": { "labelSelectorPath": { - "type": "string", - "description": "" + "type": "string" }, "specReplicasPath": { - "type": "string", - "description": "" + "type": "string" }, "statusReplicasPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -362,7 +310,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceSubresourceStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceSubresourceStatus", "javaInterfaces": [ @@ -371,7 +318,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceSubresources": { "type": "object", - "description": "", "properties": { "scale": { "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceSubresourceScale", @@ -390,7 +336,6 @@ }, "kubernetes_apiextensions_v1_CustomResourceValidation": { "type": "object", - "description": "", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -405,15 +350,12 @@ }, "kubernetes_apiextensions_v1_ExternalDocumentation": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -424,11 +366,9 @@ }, "kubernetes_apiextensions_v1_JSON": { "type": "object", - "description": "", "properties": { "Raw": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -439,15 +379,12 @@ }, "kubernetes_apiextensions_v1_JSONSchemaProps": { "type": "object", - "description": "", "properties": { "$ref": { - "type": "string", - "description": "" + "type": "string" }, "$schema": { - "type": "string", - "description": "" + "type": "string" }, "additionalItems": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrBool", @@ -459,7 +396,6 @@ }, "allOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -468,7 +404,6 @@ }, "anyOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -481,7 +416,6 @@ }, "definitions": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -490,7 +424,6 @@ }, "dependencies": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrStringArray", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrStringArray" @@ -498,12 +431,10 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrStringArray\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "enum": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSON", @@ -515,24 +446,20 @@ "existingJavaType": "com.fasterxml.jackson.databind.JsonNode" }, "exclusiveMaximum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "exclusiveMinimum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/kubernetes_apiextensions_v1_ExternalDocumentation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.ExternalDocumentation" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "id": { - "type": "string", - "description": "" + "type": "string" }, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrArray", @@ -540,57 +467,46 @@ }, "maxItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maximum": { - "type": "number", - "description": "" + "type": "number" }, "minItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minimum": { - "type": "number", - "description": "" + "type": "number" }, "multipleOf": { - "type": "number", - "description": "" + "type": "number" }, "not": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" }, "nullable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oneOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -598,12 +514,10 @@ } }, "pattern": { - "type": "string", - "description": "" + "type": "string" }, "patternProperties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -612,7 +526,6 @@ }, "properties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -621,53 +534,41 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "title": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "uniqueItems": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-embedded-resource": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-int-or-string": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-list-map-keys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "x-kubernetes-list-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-map-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-preserve-unknown-fields": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": false, @@ -678,11 +579,9 @@ }, "kubernetes_apiextensions_v1_JSONSchemaPropsOrArray": { "type": "object", - "description": "", "properties": { "JSONSchemas": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -703,11 +602,9 @@ }, "kubernetes_apiextensions_v1_JSONSchemaPropsOrBool": { "type": "object", - "description": "", "properties": { "Allows": { - "type": "boolean", - "description": "" + "type": "boolean" }, "Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -724,14 +621,11 @@ }, "kubernetes_apiextensions_v1_JSONSchemaPropsOrStringArray": { "type": "object", - "description": "", "properties": { "Property": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "Schema": { @@ -749,23 +643,18 @@ }, "kubernetes_apiextensions_v1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -776,19 +665,16 @@ }, "kubernetes_apiextensions_v1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_apiextensions_v1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -799,7 +685,6 @@ }, "kubernetes_apiextensions_v1_WebhookConversion": { "type": "object", - "description": "", "properties": { "clientConfig": { "$ref": "#/definitions/kubernetes_apiextensions_v1_WebhookClientConfig", @@ -807,10 +692,8 @@ }, "conversionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -822,31 +705,24 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition": { "type": "object", - "description": "", "properties": { "JSONPath": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -857,20 +733,16 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceConversion": { "type": "object", - "description": "", "properties": { "conversionReviewVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "strategy": { - "type": "string", - "description": "" + "type": "string" }, "webhookClientConfig": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_WebhookClientConfig", @@ -885,17 +757,14 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinition": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinition", "required": true }, @@ -920,27 +789,22 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -951,17 +815,14 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinition" @@ -969,7 +830,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinitionList", "required": true }, @@ -987,41 +847,32 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames": { "type": "object", - "description": "", "properties": { "categories": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "listKind": { - "type": "string", - "description": "" + "type": "string" }, "plural": { - "type": "string", - "description": "" + "type": "string" }, "shortNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "singular": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1032,11 +883,9 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionSpec": { "type": "object", - "description": "", "properties": { "additionalPrinterColumns": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition", @@ -1048,20 +897,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceConversion" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "names": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionNames" }, "preserveUnknownFields": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scope": { - "type": "string", - "description": "" + "type": "string" }, "subresources": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresources", @@ -1072,12 +918,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceValidation" }, "version": { - "type": "string", - "description": "" + "type": "string" }, "versions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionVersion", @@ -1093,7 +937,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionStatus": { "type": "object", - "description": "", "properties": { "acceptedNames": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames", @@ -1101,7 +944,6 @@ }, "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionCondition" @@ -1109,10 +951,8 @@ }, "storedVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1124,11 +964,9 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceDefinitionVersion": { "type": "object", - "description": "", "properties": { "additionalPrinterColumns": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition", @@ -1136,28 +974,23 @@ } }, "deprecated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "deprecationWarning": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceValidation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceValidation" }, "served": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storage": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subresources": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresources", @@ -1172,19 +1005,15 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceSubresourceScale": { "type": "object", - "description": "", "properties": { "labelSelectorPath": { - "type": "string", - "description": "" + "type": "string" }, "specReplicasPath": { - "type": "string", - "description": "" + "type": "string" }, "statusReplicasPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1195,7 +1024,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceSubresourceStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceSubresourceStatus", "javaInterfaces": [ @@ -1204,7 +1032,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceSubresources": { "type": "object", - "description": "", "properties": { "scale": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresourceScale", @@ -1223,7 +1050,6 @@ }, "kubernetes_apiextensions_v1beta1_CustomResourceValidation": { "type": "object", - "description": "", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1238,15 +1064,12 @@ }, "kubernetes_apiextensions_v1beta1_ExternalDocumentation": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1257,11 +1080,9 @@ }, "kubernetes_apiextensions_v1beta1_JSON": { "type": "object", - "description": "", "properties": { "Raw": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1272,15 +1093,12 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaProps": { "type": "object", - "description": "", "properties": { "$ref": { - "type": "string", - "description": "" + "type": "string" }, "$schema": { - "type": "string", - "description": "" + "type": "string" }, "additionalItems": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrBool", @@ -1292,7 +1110,6 @@ }, "allOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1301,7 +1118,6 @@ }, "anyOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1314,7 +1130,6 @@ }, "definitions": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1323,7 +1138,6 @@ }, "dependencies": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrStringArray", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrStringArray" @@ -1331,12 +1145,10 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrStringArray\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "enum": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSON", @@ -1348,24 +1160,20 @@ "existingJavaType": "com.fasterxml.jackson.databind.JsonNode" }, "exclusiveMaximum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "exclusiveMinimum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_ExternalDocumentation", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.ExternalDocumentation" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "id": { - "type": "string", - "description": "" + "type": "string" }, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrArray", @@ -1373,57 +1181,46 @@ }, "maxItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maximum": { - "type": "number", - "description": "" + "type": "number" }, "minItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minimum": { - "type": "number", - "description": "" + "type": "number" }, "multipleOf": { - "type": "number", - "description": "" + "type": "number" }, "not": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" }, "nullable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oneOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1431,12 +1228,10 @@ } }, "pattern": { - "type": "string", - "description": "" + "type": "string" }, "patternProperties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1445,7 +1240,6 @@ }, "properties": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1454,53 +1248,41 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "title": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "uniqueItems": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-embedded-resource": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-int-or-string": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-list-map-keys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "x-kubernetes-list-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-map-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-preserve-unknown-fields": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": false, @@ -1511,11 +1293,9 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrArray": { "type": "object", - "description": "", "properties": { "JSONSchemas": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" @@ -1536,11 +1316,9 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrBool": { "type": "object", - "description": "", "properties": { "Allows": { - "type": "boolean", - "description": "" + "type": "boolean" }, "Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", @@ -1557,14 +1335,11 @@ }, "kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrStringArray": { "type": "object", - "description": "", "properties": { "Property": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "Schema": { @@ -1582,23 +1357,18 @@ }, "kubernetes_apiextensions_v1beta1_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1609,19 +1379,16 @@ }, "kubernetes_apiextensions_v1beta1_WebhookClientConfig": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1632,23 +1399,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1656,7 +1419,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1665,7 +1427,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1680,17 +1441,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1698,7 +1456,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1711,30 +1468,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1747,45 +1498,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1796,7 +1539,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -1805,23 +1547,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1832,15 +1570,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1851,17 +1586,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1869,7 +1601,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1887,24 +1618,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1915,57 +1641,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1976,27 +1690,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2011,20 +1720,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2032,7 +1737,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -2041,34 +1745,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -2076,18 +1773,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -2095,16 +1789,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2115,31 +1806,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2150,7 +1834,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -2159,34 +1842,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -2199,15 +1875,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2218,14 +1891,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2237,15 +1907,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2256,17 +1923,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -2274,25 +1938,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2303,19 +1963,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2326,11 +1982,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -2338,24 +1992,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2366,11 +2015,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2381,15 +2028,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2400,30 +2044,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -2436,7 +2074,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -2445,7 +2082,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -2454,43 +2090,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2501,35 +2127,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2676,19 +2294,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -2696,7 +2311,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -2705,7 +2319,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -2718,13 +2331,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -2732,7 +2343,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -2743,26 +2353,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -2771,29 +2376,23 @@ }, "customresourcecolumndefinition": { "properties": { + "JSONPath": { + "type": "string" + }, "description": { - "type": "string", - "description": "" + "type": "string" }, "format": { - "type": "string", - "description": "" - }, - "jsonPath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2802,16 +2401,13 @@ "properties": { "conversionReviewVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "strategy": { - "type": "string", - "description": "" + "type": "string" }, "webhookClientConfig": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_WebhookClientConfig", @@ -2824,13 +2420,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinition", "required": true }, @@ -2856,20 +2450,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2878,13 +2468,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiextensions.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinition", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinition" @@ -2892,7 +2480,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CustomResourceDefinitionList", "required": true }, @@ -2907,69 +2494,77 @@ "properties": { "categories": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "listKind": { - "type": "string", - "description": "" + "type": "string" }, "plural": { - "type": "string", - "description": "" + "type": "string" }, "shortNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "singular": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true }, "customresourcedefinitionspec": { "properties": { + "additionalPrinterColumns": { + "type": "array", + "javaOmitEmpty": true, + "items": { + "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceColumnDefinition" + } + }, "conversion": { - "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceConversion", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceConversion" + "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceConversion", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceConversion" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "names": { - "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionNames", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionNames" + "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionNames" }, "preserveUnknownFields": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scope": { - "type": "string", - "description": "" + "type": "string" + }, + "subresources": { + "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresources", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceSubresources" + }, + "validation": { + "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceValidation", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceValidation" + }, + "version": { + "type": "string" }, "versions": { "type": "array", - "description": "", + "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionVersion", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionVersion" + "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionVersion", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionVersion" } } }, @@ -2978,23 +2573,20 @@ "customresourcedefinitionstatus": { "properties": { "acceptedNames": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionNames", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionNames" + "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionNames", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionNames" }, "conditions": { "type": "array", - "description": "", "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceDefinitionCondition", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceDefinitionCondition" + "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceDefinitionCondition", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionCondition" } }, "storedVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3004,40 +2596,34 @@ "properties": { "additionalPrinterColumns": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceColumnDefinition", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceColumnDefinition" + "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceColumnDefinition", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceColumnDefinition" } }, "deprecated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "deprecationWarning": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "schema": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceValidation", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceValidation" + "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceValidation", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceValidation" }, "served": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storage": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subresources": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_CustomResourceSubresources", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.CustomResourceSubresources" + "$ref": "#/definitions/kubernetes_apiextensions_v1_CustomResourceSubresources", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceSubresources" } }, "additionalProperties": true @@ -3058,16 +2644,13 @@ "customresourcesubresourcescale": { "properties": { "labelSelectorPath": { - "type": "string", - "description": "" + "type": "string" }, "specReplicasPath": { - "type": "string", - "description": "" + "type": "string" }, "statusReplicasPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3078,8 +2661,8 @@ "customresourcevalidation": { "properties": { "openAPIV3Schema": { - "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" } }, "additionalProperties": true @@ -3088,41 +2671,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3130,12 +2706,10 @@ "externaldocumentation": { "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3147,19 +2721,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3167,12 +2738,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3183,40 +2752,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3224,8 +2784,7 @@ "json": { "properties": { "Raw": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3233,232 +2792,194 @@ "jsonschemaprops": { "properties": { "$ref": { - "type": "string", - "description": "" + "type": "string" }, "$schema": { - "type": "string", - "description": "" + "type": "string" }, "additionalItems": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrBool", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrBool" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrBool", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrBool" }, "additionalProperties": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrBool", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrBool" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrBool", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrBool" }, "allOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" } }, "anyOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" } }, "default": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSON", + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSON", "existingJavaType": "com.fasterxml.jackson.databind.JsonNode" }, "definitions": { "type": "object", - "description": "", "additionalProperties": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" }, - "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps\u003e" + "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps\u003e" }, "dependencies": { "type": "object", - "description": "", "additionalProperties": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrStringArray", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrStringArray" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrStringArray", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrStringArray" }, - "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrStringArray\u003e" + "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrStringArray\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "enum": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSON", + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSON", "existingJavaType": "com.fasterxml.jackson.databind.JsonNode" } }, "example": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSON", + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSON", "existingJavaType": "com.fasterxml.jackson.databind.JsonNode" }, "exclusiveMaximum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "exclusiveMinimum": { - "type": "boolean", - "description": "" + "type": "boolean" }, "externalDocs": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_ExternalDocumentation", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.ExternalDocumentation" + "$ref": "#/definitions/kubernetes_apiextensions_v1_ExternalDocumentation", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.ExternalDocumentation" }, "format": { - "type": "string", - "description": "" + "type": "string" }, "id": { - "type": "string", - "description": "" + "type": "string" }, "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaPropsOrArray", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaPropsOrArray" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaPropsOrArray", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaPropsOrArray" }, "maxItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maximum": { - "type": "number", - "description": "" + "type": "number" }, "minItems": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minLength": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minProperties": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "minimum": { - "type": "number", - "description": "" + "type": "number" }, "multipleOf": { - "type": "number", - "description": "" + "type": "number" }, "not": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" }, "nullable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oneOf": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" } }, "pattern": { - "type": "string", - "description": "" + "type": "string" }, "patternProperties": { "type": "object", - "description": "", "additionalProperties": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" }, - "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps\u003e" + "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps\u003e" }, "properties": { "type": "object", - "description": "", "additionalProperties": { - "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_JSONSchemaProps", - "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps" + "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", + "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" }, - "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1beta1.JSONSchemaProps\u003e" + "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps\u003e" }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "title": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "uniqueItems": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-embedded-resource": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-int-or-string": { - "type": "boolean", - "description": "" + "type": "boolean" }, "x-kubernetes-list-map-keys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "x-kubernetes-list-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-map-type": { - "type": "string", - "description": "" + "type": "string" }, "x-kubernetes-preserve-unknown-fields": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": false @@ -3467,7 +2988,6 @@ "properties": { "JSONSchemas": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1.JSONSchemaProps" @@ -3483,8 +3003,7 @@ "jsonschemapropsorbool": { "properties": { "Allows": { - "type": "boolean", - "description": "" + "type": "boolean" }, "Schema": { "$ref": "#/definitions/kubernetes_apiextensions_v1_JSONSchemaProps", @@ -3497,10 +3016,8 @@ "properties": { "Property": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "Schema": { @@ -3514,13 +3031,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -3528,7 +3043,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -3542,21 +3056,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3564,54 +3074,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3619,24 +3118,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3649,16 +3144,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3666,7 +3158,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -3675,34 +3166,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -3710,18 +3194,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -3729,16 +3210,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3746,32 +3224,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3779,28 +3250,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3812,30 +3277,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -3845,12 +3304,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3858,8 +3315,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3871,10 +3327,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3883,12 +3337,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3896,20 +3348,16 @@ "servicereference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -3918,13 +3366,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -3932,25 +3378,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3958,16 +3400,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3976,7 +3415,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -3984,24 +3422,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4009,8 +3442,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4018,12 +3450,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4032,26 +3462,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -4061,16 +3486,14 @@ "webhookclientconfig": { "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "service": { "$ref": "#/definitions/kubernetes_apiextensions_v1beta1_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.apiextensions.v1beta1.ServiceReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4083,10 +3506,8 @@ }, "conversionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, diff --git a/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/kube-schema.json index 0367614dbba..2c0a402f344 100644 --- a/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,11 +814,9 @@ }, "kubernetes_apps_ControllerRevision": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, @@ -984,7 +826,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ControllerRevision", "required": true }, @@ -994,7 +835,6 @@ }, "revision": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1007,17 +847,14 @@ }, "kubernetes_apps_ControllerRevisionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_ControllerRevision", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.ControllerRevision" @@ -1025,7 +862,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ControllerRevisionList", "required": true }, @@ -1043,17 +879,14 @@ }, "kubernetes_apps_DaemonSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DaemonSet", "required": true }, @@ -1079,27 +912,22 @@ }, "kubernetes_apps_DaemonSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1110,17 +938,14 @@ }, "kubernetes_apps_DaemonSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_DaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.DaemonSet" @@ -1128,7 +953,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DaemonSetList", "required": true }, @@ -1146,15 +970,12 @@ }, "kubernetes_apps_DaemonSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1177,15 +998,12 @@ }, "kubernetes_apps_DaemonSetStatus": { "type": "object", - "description": "", "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DaemonSetCondition", @@ -1193,37 +1011,29 @@ } }, "currentNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberAvailable": { - "type": "integer", - "description": "" + "type": "integer" }, "numberMisscheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberReady": { - "type": "integer", - "description": "" + "type": "integer" }, "numberUnavailable": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatedNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1234,15 +1044,13 @@ }, "kubernetes_apps_DaemonSetUpdateStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateDaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDaemonSet" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1253,17 +1061,14 @@ }, "kubernetes_apps_Deployment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -1289,7 +1094,6 @@ }, "kubernetes_apps_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1300,20 +1104,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1324,17 +1124,14 @@ }, "kubernetes_apps_DeploymentList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_Deployment", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.Deployment" @@ -1342,7 +1139,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentList", "required": true }, @@ -1360,27 +1156,21 @@ }, "kubernetes_apps_DeploymentSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1403,19 +1193,15 @@ }, "kubernetes_apps_DeploymentStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DeploymentCondition", @@ -1424,24 +1210,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1452,15 +1233,13 @@ }, "kubernetes_apps_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateDeployment", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1471,17 +1250,14 @@ }, "kubernetes_apps_ReplicaSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicaSet", "required": true }, @@ -1507,27 +1283,22 @@ }, "kubernetes_apps_ReplicaSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1538,17 +1309,14 @@ }, "kubernetes_apps_ReplicaSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_ReplicaSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.ReplicaSet" @@ -1556,7 +1324,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicaSetList", "required": true }, @@ -1574,15 +1341,12 @@ }, "kubernetes_apps_ReplicaSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1601,15 +1365,12 @@ }, "kubernetes_apps_ReplicaSetStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_ReplicaSetCondition", @@ -1617,21 +1378,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1642,7 +1399,6 @@ }, "kubernetes_apps_RollingUpdateDaemonSet": { "type": "object", - "description": "", "properties": { "maxUnavailable": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1657,7 +1413,6 @@ }, "kubernetes_apps_RollingUpdateDeployment": { "type": "object", - "description": "", "properties": { "maxSurge": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1676,11 +1431,9 @@ }, "kubernetes_apps_RollingUpdateStatefulSetStrategy": { "type": "object", - "description": "", "properties": { "partition": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1691,17 +1444,14 @@ }, "kubernetes_apps_StatefulSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "StatefulSet", "required": true }, @@ -1727,27 +1477,22 @@ }, "kubernetes_apps_StatefulSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1758,17 +1503,14 @@ }, "kubernetes_apps_StatefulSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_StatefulSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.StatefulSet" @@ -1776,7 +1518,6 @@ }, "kind": { "type": "string", - "description": "", "default": "StatefulSetList", "required": true }, @@ -1794,27 +1535,22 @@ }, "kubernetes_apps_StatefulSetSpec": { "type": "object", - "description": "", "properties": { "podManagementPolicy": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -1826,7 +1562,6 @@ }, "volumeClaimTemplates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", @@ -1842,15 +1577,12 @@ }, "kubernetes_apps_StatefulSetStatus": { "type": "object", - "description": "", "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_StatefulSetCondition", @@ -1858,33 +1590,26 @@ } }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "currentRevision": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updateRevision": { - "type": "string", - "description": "" + "type": "string" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1895,15 +1620,13 @@ }, "kubernetes_apps_StatefulSetUpdateStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateStatefulSetStrategy", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateStatefulSetStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1914,23 +1637,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1941,7 +1659,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1964,15 +1681,12 @@ }, "kubernetes_core_AttachedVolume": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1983,31 +1697,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2018,23 +1725,18 @@ }, "kubernetes_core_AzureFilePersistentVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2045,19 +1747,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2068,17 +1766,14 @@ }, "kubernetes_core_Binding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Binding", "required": true }, @@ -2100,7 +1795,6 @@ }, "kubernetes_core_CSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -2111,12 +1805,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -2127,21 +1819,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2152,30 +1840,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -2188,24 +1870,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2217,35 +1894,28 @@ }, "kubernetes_core_CephFSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2256,35 +1926,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2295,23 +1958,19 @@ }, "kubernetes_core_CinderPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2322,23 +1981,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2349,11 +2004,9 @@ }, "kubernetes_core_ClientIPConfig": { "type": "object", - "description": "", "properties": { "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2364,23 +2017,18 @@ }, "kubernetes_core_ComponentCondition": { "type": "object", - "description": "", "properties": { "error": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2391,17 +2039,14 @@ }, "kubernetes_core_ComponentStatus": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ComponentCondition", @@ -2410,7 +2055,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatus", "required": true }, @@ -2427,17 +2071,14 @@ }, "kubernetes_core_ComponentStatusList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ComponentStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.ComponentStatus" @@ -2445,7 +2086,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatusList", "required": true }, @@ -2463,39 +2103,31 @@ }, "kubernetes_core_ConfigMap": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "binaryData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ConfigMap", "required": true }, @@ -2513,15 +2145,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2532,19 +2161,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2555,17 +2180,14 @@ }, "kubernetes_core_ConfigMapList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ConfigMap", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMap" @@ -2573,7 +2195,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigMapList", "required": true }, @@ -2591,27 +2212,21 @@ }, "kubernetes_core_ConfigMapNodeConfigSource": { "type": "object", - "description": "", "properties": { "kubeletConfigKey": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2622,11 +2237,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2634,12 +2247,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2650,15 +2261,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2666,12 +2274,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2682,29 +2288,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2713,7 +2313,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2721,12 +2320,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2738,13 +2335,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2768,28 +2363,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2798,7 +2387,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2806,8 +2394,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2818,19 +2405,15 @@ }, "kubernetes_core_ContainerImage": { "type": "object", - "description": "", "properties": { "names": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "sizeBytes": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2842,29 +2425,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2875,7 +2452,6 @@ }, "kubernetes_core_ContainerState": { "type": "object", - "description": "", "properties": { "running": { "$ref": "#/definitions/kubernetes_core_ContainerStateRunning", @@ -2898,7 +2474,6 @@ }, "kubernetes_core_ContainerStateRunning": { "type": "object", - "description": "", "properties": { "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2913,31 +2488,25 @@ }, "kubernetes_core_ContainerStateTerminated": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "exitCode": { - "type": "integer", - "description": "" + "type": "integer" }, "finishedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "signal": { - "type": "integer", - "description": "" + "type": "integer" }, "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2952,15 +2521,12 @@ }, "kubernetes_core_ContainerStateWaiting": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2971,19 +2537,15 @@ }, "kubernetes_core_ContainerStatus": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "lastState": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -2991,21 +2553,17 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ready": { - "type": "boolean", - "description": "" + "type": "boolean" }, "restartCount": { - "type": "integer", - "description": "" + "type": "integer" }, "started": { - "type": "boolean", - "description": "" + "type": "boolean" }, "state": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -3020,11 +2578,9 @@ }, "kubernetes_core_DaemonEndpoint": { "type": "object", - "description": "", "properties": { "Port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3035,11 +2591,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -3055,19 +2609,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -3082,15 +2633,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -3106,11 +2654,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -3125,19 +2671,15 @@ }, "kubernetes_core_EndpointAddress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -3152,25 +2694,20 @@ }, "kubernetes_core_EndpointPort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3181,11 +2718,9 @@ }, "kubernetes_core_EndpointSubset": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -3194,7 +2729,6 @@ }, "notReadyAddresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -3203,7 +2737,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointPort", @@ -3219,17 +2752,14 @@ }, "kubernetes_core_Endpoints": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Endpoints", "required": true }, @@ -3239,7 +2769,6 @@ }, "subsets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointSubset", @@ -3256,17 +2785,14 @@ }, "kubernetes_core_EndpointsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Endpoints", "existingJavaType": "io.fabric8.kubernetes.api.model.Endpoints" @@ -3274,7 +2800,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointsList", "required": true }, @@ -3292,15 +2817,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -3315,16 +2838,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -3339,7 +2859,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -3366,29 +2885,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3397,7 +2910,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3405,12 +2917,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3421,12 +2931,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3450,32 +2958,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3484,7 +2985,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3492,8 +2992,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3504,29 +3003,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3535,7 +3028,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3543,12 +3035,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3559,12 +3049,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3588,28 +3076,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3618,7 +3100,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3626,8 +3107,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3638,11 +3118,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -3657,15 +3135,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3677,36 +3152,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3718,28 +3185,22 @@ }, "kubernetes_core_FlexPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -3754,28 +3215,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3790,15 +3245,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3809,23 +3261,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3836,19 +3283,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3859,23 +3302,18 @@ }, "kubernetes_core_GlusterfsPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3886,19 +3324,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3909,15 +3343,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -3925,16 +3356,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3945,15 +3374,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3964,7 +3390,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -3987,20 +3412,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4011,15 +3432,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4030,56 +3448,44 @@ }, "kubernetes_core_ISCSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4090,56 +3496,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4150,19 +3544,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4173,7 +3563,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -4192,17 +3581,14 @@ }, "kubernetes_core_LimitRange": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LimitRange", "required": true }, @@ -4224,11 +3610,9 @@ }, "kubernetes_core_LimitRangeItem": { "type": "object", - "description": "", "properties": { "default": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4237,7 +3621,6 @@ }, "defaultRequest": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4246,7 +3629,6 @@ }, "max": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4255,7 +3637,6 @@ }, "maxLimitRequestRatio": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4264,7 +3645,6 @@ }, "min": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4272,8 +3652,7 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4284,17 +3663,14 @@ }, "kubernetes_core_LimitRangeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRange", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRange" @@ -4302,7 +3678,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LimitRangeList", "required": true }, @@ -4320,11 +3695,9 @@ }, "kubernetes_core_LimitRangeSpec": { "type": "object", - "description": "", "properties": { "limits": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRangeItem", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRangeItem" @@ -4339,15 +3712,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4358,11 +3728,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -4378,11 +3746,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4393,15 +3759,12 @@ }, "kubernetes_core_LocalVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4412,19 +3775,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4435,17 +3794,14 @@ }, "kubernetes_core_Namespace": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Namespace", "required": true }, @@ -4470,27 +3826,22 @@ }, "kubernetes_core_NamespaceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4501,17 +3852,14 @@ }, "kubernetes_core_NamespaceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Namespace", "existingJavaType": "io.fabric8.kubernetes.api.model.Namespace" @@ -4519,7 +3867,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NamespaceList", "required": true }, @@ -4537,15 +3884,12 @@ }, "kubernetes_core_NamespaceSpec": { "type": "object", - "description": "", "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4557,11 +3901,9 @@ }, "kubernetes_core_NamespaceStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -4569,8 +3911,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4581,17 +3922,14 @@ }, "kubernetes_core_Node": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Node", "required": true }, @@ -4616,15 +3954,12 @@ }, "kubernetes_core_NodeAddress": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4635,11 +3970,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -4659,7 +3992,6 @@ }, "kubernetes_core_NodeCondition": { "type": "object", - "description": "", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4670,20 +4002,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4694,7 +4022,6 @@ }, "kubernetes_core_NodeConfigSource": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapNodeConfigSource", @@ -4709,7 +4036,6 @@ }, "kubernetes_core_NodeConfigStatus": { "type": "object", - "description": "", "properties": { "active": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4720,8 +4046,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4736,7 +4061,6 @@ }, "kubernetes_core_NodeDaemonEndpoints": { "type": "object", - "description": "", "properties": { "kubeletEndpoint": { "$ref": "#/definitions/kubernetes_core_DaemonEndpoint", @@ -4751,17 +4075,14 @@ }, "kubernetes_core_NodeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Node", "existingJavaType": "io.fabric8.kubernetes.api.model.Node" @@ -4769,7 +4090,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeList", "required": true }, @@ -4787,11 +4107,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -4806,23 +4124,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4834,11 +4147,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4847,7 +4158,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4863,36 +4173,29 @@ }, "kubernetes_core_NodeSpec": { "type": "object", - "description": "", "properties": { "configSource": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "podCIDR": { - "type": "string", - "description": "" + "type": "string" }, "podCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "providerID": { - "type": "string", - "description": "" + "type": "string" }, "taints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Taint", @@ -4900,8 +4203,7 @@ } }, "unschedulable": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4912,11 +4214,9 @@ }, "kubernetes_core_NodeStatus": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeAddress", @@ -4925,7 +4225,6 @@ }, "allocatable": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4934,7 +4233,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4943,7 +4241,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeCondition", @@ -4960,7 +4257,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerImage", @@ -4972,12 +4268,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSystemInfo" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "volumesAttached": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_AttachedVolume", @@ -4986,11 +4280,9 @@ }, "volumesInUse": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5002,47 +4294,36 @@ }, "kubernetes_core_NodeSystemInfo": { "type": "object", - "description": "", "properties": { "architecture": { - "type": "string", - "description": "" + "type": "string" }, "bootID": { - "type": "string", - "description": "" + "type": "string" }, "containerRuntimeVersion": { - "type": "string", - "description": "" + "type": "string" }, "kernelVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeProxyVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeletVersion": { - "type": "string", - "description": "" + "type": "string" }, "machineID": { - "type": "string", - "description": "" + "type": "string" }, "operatingSystem": { - "type": "string", - "description": "" + "type": "string" }, "osImage": { - "type": "string", - "description": "" + "type": "string" }, "systemUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5053,15 +4334,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5072,35 +4350,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5111,17 +4381,14 @@ }, "kubernetes_core_PersistentVolume": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolume", "required": true }, @@ -5146,17 +4413,14 @@ }, "kubernetes_core_PersistentVolumeClaim": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaim", "required": true }, @@ -5182,7 +4446,6 @@ }, "kubernetes_core_PersistentVolumeClaimCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5193,20 +4456,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5217,17 +4476,14 @@ }, "kubernetes_core_PersistentVolumeClaimList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim" @@ -5235,7 +4491,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaimList", "required": true }, @@ -5253,15 +4508,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -5277,16 +4529,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5297,20 +4546,16 @@ }, "kubernetes_core_PersistentVolumeClaimStatus": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -5319,7 +4564,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -5327,8 +4571,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5339,7 +4582,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -5358,15 +4600,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -5377,17 +4616,14 @@ }, "kubernetes_core_PersistentVolumeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolume", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolume" @@ -5395,7 +4631,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeList", "required": true }, @@ -5413,7 +4648,6 @@ }, "kubernetes_core_PersistentVolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -5512,15 +4746,12 @@ }, "kubernetes_core_PersistentVolumeSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -5537,7 +4768,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -5594,11 +4824,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -5610,8 +4838,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -5634,16 +4861,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -5658,19 +4883,15 @@ }, "kubernetes_core_PersistentVolumeStatus": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5681,15 +4902,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5700,17 +4918,14 @@ }, "kubernetes_core_Pod": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pod", "required": true }, @@ -5736,11 +4951,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5749,7 +4962,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5765,7 +4977,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -5773,16 +4984,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5793,11 +5001,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5806,7 +5012,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5822,7 +5027,6 @@ }, "kubernetes_core_PodCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5833,20 +5037,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5857,20 +5057,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -5879,11 +5075,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5895,15 +5089,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5914,11 +5105,9 @@ }, "kubernetes_core_PodIP": { "type": "object", - "description": "", "properties": { "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5929,17 +5118,14 @@ }, "kubernetes_core_PodList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Pod", "existingJavaType": "io.fabric8.kubernetes.api.model.Pod" @@ -5947,7 +5133,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodList", "required": true }, @@ -5965,11 +5150,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5980,29 +5163,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -6015,17 +5192,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -6045,11 +5219,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -6057,12 +5229,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -6073,16 +5243,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -6091,7 +5258,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -6099,24 +5265,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6125,7 +5286,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -6133,21 +5293,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6155,20 +5311,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -6176,49 +5328,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -6227,7 +5369,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -6236,7 +5377,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -6252,11 +5392,9 @@ }, "kubernetes_core_PodStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodCondition", @@ -6265,7 +5403,6 @@ }, "containerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6274,7 +5411,6 @@ }, "ephemeralContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6282,12 +5418,10 @@ } }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "initContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6295,24 +5429,19 @@ } }, "message": { - "type": "string", - "description": "" + "type": "string" }, "nominatedNodeName": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "podIP": { - "type": "string", - "description": "" + "type": "string" }, "podIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodIP", @@ -6320,12 +5449,10 @@ } }, "qosClass": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6340,17 +5467,14 @@ }, "kubernetes_core_PodTemplate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -6372,17 +5496,14 @@ }, "kubernetes_core_PodTemplateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PodTemplate", "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplate" @@ -6390,7 +5511,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodTemplateList", "required": true }, @@ -6408,7 +5528,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -6427,19 +5546,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6450,15 +5565,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6469,39 +5582,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6512,15 +5619,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -6535,31 +5639,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6570,43 +5667,34 @@ }, "kubernetes_core_RBDPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6617,43 +5705,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6664,17 +5743,14 @@ }, "kubernetes_core_ReplicationController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicationController", "required": true }, @@ -6700,27 +5776,22 @@ }, "kubernetes_core_ReplicationControllerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6731,17 +5802,14 @@ }, "kubernetes_core_ReplicationControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ReplicationController", "existingJavaType": "io.fabric8.kubernetes.api.model.ReplicationController" @@ -6749,7 +5817,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicationControllerList", "required": true }, @@ -6767,22 +5834,17 @@ }, "kubernetes_core_ReplicationControllerSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6799,15 +5861,12 @@ }, "kubernetes_core_ReplicationControllerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ReplicationControllerCondition", @@ -6815,21 +5874,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6840,19 +5895,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6863,17 +5915,14 @@ }, "kubernetes_core_ResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ResourceQuota", "required": true }, @@ -6899,17 +5948,14 @@ }, "kubernetes_core_ResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ResourceQuota", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceQuota" @@ -6917,7 +5963,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ResourceQuotaList", "required": true }, @@ -6935,11 +5980,9 @@ }, "kubernetes_core_ResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6952,11 +5995,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6968,11 +6009,9 @@ }, "kubernetes_core_ResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6981,7 +6020,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6997,11 +6035,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -7010,7 +6046,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -7026,23 +6061,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7053,47 +6083,37 @@ }, "kubernetes_core_ScaleIOPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7104,47 +6124,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7155,11 +6165,9 @@ }, "kubernetes_core_ScopeSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -7175,23 +6183,18 @@ }, "kubernetes_core_ScopedResourceSelectorRequirement": { "type": "object", - "description": "", "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7203,15 +6206,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7222,30 +6222,24 @@ }, "kubernetes_core_Secret": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "Secret", "required": true }, @@ -7255,16 +6249,13 @@ }, "stringData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7276,15 +6267,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7295,19 +6283,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7318,17 +6302,14 @@ }, "kubernetes_core_SecretList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Secret", "existingJavaType": "io.fabric8.kubernetes.api.model.Secret" @@ -7336,7 +6317,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecretList", "required": true }, @@ -7354,11 +6334,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7366,12 +6344,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7382,15 +6358,12 @@ }, "kubernetes_core_SecretReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7401,15 +6374,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7417,12 +6387,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7433,40 +6401,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -7490,17 +6450,14 @@ }, "kubernetes_core_Service": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -7526,21 +6483,17 @@ }, "kubernetes_core_ServiceAccount": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7549,7 +6502,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccount", "required": true }, @@ -7559,7 +6511,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -7576,17 +6527,14 @@ }, "kubernetes_core_ServiceAccountList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ServiceAccount", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceAccount" @@ -7594,7 +6542,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccountList", "required": true }, @@ -7612,20 +6559,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7636,17 +6579,14 @@ }, "kubernetes_core_ServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Service", "existingJavaType": "io.fabric8.kubernetes.api.model.Service" @@ -7654,7 +6594,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, @@ -7672,29 +6611,23 @@ }, "kubernetes_core_ServicePort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "nodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7709,53 +6642,41 @@ }, "kubernetes_core_ServiceSpec": { "type": "object", - "description": "", "properties": { "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "externalIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "externalTrafficPolicy": { - "type": "string", - "description": "" + "type": "string" }, "healthCheckNodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "ipFamily": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerIP": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerSourceRanges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ServicePort", @@ -7763,21 +6684,17 @@ } }, "publishNotReadyAddresses": { - "type": "boolean", - "description": "" + "type": "boolean" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "sessionAffinity": { - "type": "string", - "description": "" + "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/kubernetes_core_SessionAffinityConfig", @@ -7785,16 +6702,13 @@ }, "topologyKeys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7805,7 +6719,6 @@ }, "kubernetes_core_ServiceStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -7820,7 +6733,6 @@ }, "kubernetes_core_SessionAffinityConfig": { "type": "object", - "description": "", "properties": { "clientIP": { "$ref": "#/definitions/kubernetes_core_ClientIPConfig", @@ -7835,27 +6747,22 @@ }, "kubernetes_core_StorageOSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7866,27 +6773,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7897,15 +6799,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7916,11 +6815,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7935,23 +6832,19 @@ }, "kubernetes_core_Taint": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "timeAdded": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7962,28 +6855,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7994,23 +6881,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8021,19 +6904,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8044,7 +6923,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8120,7 +6998,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -8177,15 +7054,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8196,31 +7070,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8231,7 +7098,6 @@ }, "kubernetes_core_VolumeNodeAffinity": { "type": "object", - "description": "", "properties": { "required": { "$ref": "#/definitions/kubernetes_core_NodeSelector", @@ -8246,7 +7112,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -8273,7 +7138,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8400,23 +7264,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8427,15 +7286,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -8446,19 +7303,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/validation-schema.json index aa4441f8e40..b204c538331 100644 --- a/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-apps/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,11 +814,9 @@ }, "kubernetes_apps_ControllerRevision": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, @@ -984,7 +826,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ControllerRevision", "required": true }, @@ -994,7 +835,6 @@ }, "revision": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1007,17 +847,14 @@ }, "kubernetes_apps_ControllerRevisionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_ControllerRevision", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.ControllerRevision" @@ -1025,7 +862,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ControllerRevisionList", "required": true }, @@ -1043,17 +879,14 @@ }, "kubernetes_apps_DaemonSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DaemonSet", "required": true }, @@ -1079,27 +912,22 @@ }, "kubernetes_apps_DaemonSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1110,17 +938,14 @@ }, "kubernetes_apps_DaemonSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_DaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.DaemonSet" @@ -1128,7 +953,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DaemonSetList", "required": true }, @@ -1146,15 +970,12 @@ }, "kubernetes_apps_DaemonSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1177,15 +998,12 @@ }, "kubernetes_apps_DaemonSetStatus": { "type": "object", - "description": "", "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DaemonSetCondition", @@ -1193,37 +1011,29 @@ } }, "currentNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberAvailable": { - "type": "integer", - "description": "" + "type": "integer" }, "numberMisscheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberReady": { - "type": "integer", - "description": "" + "type": "integer" }, "numberUnavailable": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatedNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1234,15 +1044,13 @@ }, "kubernetes_apps_DaemonSetUpdateStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateDaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDaemonSet" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1253,17 +1061,14 @@ }, "kubernetes_apps_Deployment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -1289,7 +1094,6 @@ }, "kubernetes_apps_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1300,20 +1104,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1324,17 +1124,14 @@ }, "kubernetes_apps_DeploymentList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_Deployment", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.Deployment" @@ -1342,7 +1139,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentList", "required": true }, @@ -1360,27 +1156,21 @@ }, "kubernetes_apps_DeploymentSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1403,19 +1193,15 @@ }, "kubernetes_apps_DeploymentStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DeploymentCondition", @@ -1424,24 +1210,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1452,15 +1233,13 @@ }, "kubernetes_apps_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateDeployment", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1471,17 +1250,14 @@ }, "kubernetes_apps_ReplicaSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicaSet", "required": true }, @@ -1507,27 +1283,22 @@ }, "kubernetes_apps_ReplicaSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1538,17 +1309,14 @@ }, "kubernetes_apps_ReplicaSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_ReplicaSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.ReplicaSet" @@ -1556,7 +1324,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicaSetList", "required": true }, @@ -1574,15 +1341,12 @@ }, "kubernetes_apps_ReplicaSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1601,15 +1365,12 @@ }, "kubernetes_apps_ReplicaSetStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_ReplicaSetCondition", @@ -1617,21 +1378,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1642,7 +1399,6 @@ }, "kubernetes_apps_RollingUpdateDaemonSet": { "type": "object", - "description": "", "properties": { "maxUnavailable": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1657,7 +1413,6 @@ }, "kubernetes_apps_RollingUpdateDeployment": { "type": "object", - "description": "", "properties": { "maxSurge": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1676,11 +1431,9 @@ }, "kubernetes_apps_RollingUpdateStatefulSetStrategy": { "type": "object", - "description": "", "properties": { "partition": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1691,17 +1444,14 @@ }, "kubernetes_apps_StatefulSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "StatefulSet", "required": true }, @@ -1727,27 +1477,22 @@ }, "kubernetes_apps_StatefulSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1758,17 +1503,14 @@ }, "kubernetes_apps_StatefulSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_StatefulSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.StatefulSet" @@ -1776,7 +1518,6 @@ }, "kind": { "type": "string", - "description": "", "default": "StatefulSetList", "required": true }, @@ -1794,27 +1535,22 @@ }, "kubernetes_apps_StatefulSetSpec": { "type": "object", - "description": "", "properties": { "podManagementPolicy": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -1826,7 +1562,6 @@ }, "volumeClaimTemplates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", @@ -1842,15 +1577,12 @@ }, "kubernetes_apps_StatefulSetStatus": { "type": "object", - "description": "", "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_StatefulSetCondition", @@ -1858,33 +1590,26 @@ } }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "currentRevision": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updateRevision": { - "type": "string", - "description": "" + "type": "string" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1895,15 +1620,13 @@ }, "kubernetes_apps_StatefulSetUpdateStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateStatefulSetStrategy", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateStatefulSetStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1914,23 +1637,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1941,7 +1659,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1964,15 +1681,12 @@ }, "kubernetes_core_AttachedVolume": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1983,31 +1697,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2018,23 +1725,18 @@ }, "kubernetes_core_AzureFilePersistentVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2045,19 +1747,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2068,17 +1766,14 @@ }, "kubernetes_core_Binding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Binding", "required": true }, @@ -2100,7 +1795,6 @@ }, "kubernetes_core_CSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -2111,12 +1805,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -2127,21 +1819,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2152,30 +1840,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -2188,24 +1870,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2217,35 +1894,28 @@ }, "kubernetes_core_CephFSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2256,35 +1926,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2295,23 +1958,19 @@ }, "kubernetes_core_CinderPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2322,23 +1981,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2349,11 +2004,9 @@ }, "kubernetes_core_ClientIPConfig": { "type": "object", - "description": "", "properties": { "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2364,23 +2017,18 @@ }, "kubernetes_core_ComponentCondition": { "type": "object", - "description": "", "properties": { "error": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2391,17 +2039,14 @@ }, "kubernetes_core_ComponentStatus": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ComponentCondition", @@ -2410,7 +2055,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatus", "required": true }, @@ -2427,17 +2071,14 @@ }, "kubernetes_core_ComponentStatusList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ComponentStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.ComponentStatus" @@ -2445,7 +2086,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatusList", "required": true }, @@ -2463,39 +2103,31 @@ }, "kubernetes_core_ConfigMap": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "binaryData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ConfigMap", "required": true }, @@ -2513,15 +2145,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2532,19 +2161,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2555,17 +2180,14 @@ }, "kubernetes_core_ConfigMapList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ConfigMap", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMap" @@ -2573,7 +2195,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigMapList", "required": true }, @@ -2591,27 +2212,21 @@ }, "kubernetes_core_ConfigMapNodeConfigSource": { "type": "object", - "description": "", "properties": { "kubeletConfigKey": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2622,11 +2237,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2634,12 +2247,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2650,15 +2261,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2666,12 +2274,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2682,29 +2288,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2713,7 +2313,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2721,12 +2320,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2738,13 +2335,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2768,28 +2363,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2798,7 +2387,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2806,8 +2394,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2818,19 +2405,15 @@ }, "kubernetes_core_ContainerImage": { "type": "object", - "description": "", "properties": { "names": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "sizeBytes": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2842,29 +2425,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2875,7 +2452,6 @@ }, "kubernetes_core_ContainerState": { "type": "object", - "description": "", "properties": { "running": { "$ref": "#/definitions/kubernetes_core_ContainerStateRunning", @@ -2898,7 +2474,6 @@ }, "kubernetes_core_ContainerStateRunning": { "type": "object", - "description": "", "properties": { "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2913,31 +2488,25 @@ }, "kubernetes_core_ContainerStateTerminated": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "exitCode": { - "type": "integer", - "description": "" + "type": "integer" }, "finishedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "signal": { - "type": "integer", - "description": "" + "type": "integer" }, "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2952,15 +2521,12 @@ }, "kubernetes_core_ContainerStateWaiting": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2971,19 +2537,15 @@ }, "kubernetes_core_ContainerStatus": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "lastState": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -2991,21 +2553,17 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ready": { - "type": "boolean", - "description": "" + "type": "boolean" }, "restartCount": { - "type": "integer", - "description": "" + "type": "integer" }, "started": { - "type": "boolean", - "description": "" + "type": "boolean" }, "state": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -3020,11 +2578,9 @@ }, "kubernetes_core_DaemonEndpoint": { "type": "object", - "description": "", "properties": { "Port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3035,11 +2591,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -3055,19 +2609,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -3082,15 +2633,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -3106,11 +2654,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -3125,19 +2671,15 @@ }, "kubernetes_core_EndpointAddress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -3152,25 +2694,20 @@ }, "kubernetes_core_EndpointPort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3181,11 +2718,9 @@ }, "kubernetes_core_EndpointSubset": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -3194,7 +2729,6 @@ }, "notReadyAddresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -3203,7 +2737,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointPort", @@ -3219,17 +2752,14 @@ }, "kubernetes_core_Endpoints": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Endpoints", "required": true }, @@ -3239,7 +2769,6 @@ }, "subsets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointSubset", @@ -3256,17 +2785,14 @@ }, "kubernetes_core_EndpointsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Endpoints", "existingJavaType": "io.fabric8.kubernetes.api.model.Endpoints" @@ -3274,7 +2800,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointsList", "required": true }, @@ -3292,15 +2817,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -3315,16 +2838,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -3339,7 +2859,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -3366,29 +2885,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3397,7 +2910,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3405,12 +2917,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3421,12 +2931,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3450,32 +2958,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3484,7 +2985,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3492,8 +2992,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3504,29 +3003,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3535,7 +3028,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3543,12 +3035,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3559,12 +3049,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3588,28 +3076,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3618,7 +3100,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3626,8 +3107,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3638,11 +3118,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -3657,15 +3135,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3677,36 +3152,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3718,28 +3185,22 @@ }, "kubernetes_core_FlexPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -3754,28 +3215,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3790,15 +3245,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3809,23 +3261,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3836,19 +3283,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3859,23 +3302,18 @@ }, "kubernetes_core_GlusterfsPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3886,19 +3324,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3909,15 +3343,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -3925,16 +3356,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3945,15 +3374,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3964,7 +3390,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -3987,20 +3412,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4011,15 +3432,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4030,56 +3448,44 @@ }, "kubernetes_core_ISCSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4090,56 +3496,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4150,19 +3544,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4173,7 +3563,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -4192,17 +3581,14 @@ }, "kubernetes_core_LimitRange": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LimitRange", "required": true }, @@ -4224,11 +3610,9 @@ }, "kubernetes_core_LimitRangeItem": { "type": "object", - "description": "", "properties": { "default": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4237,7 +3621,6 @@ }, "defaultRequest": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4246,7 +3629,6 @@ }, "max": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4255,7 +3637,6 @@ }, "maxLimitRequestRatio": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4264,7 +3645,6 @@ }, "min": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4272,8 +3652,7 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4284,17 +3663,14 @@ }, "kubernetes_core_LimitRangeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRange", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRange" @@ -4302,7 +3678,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LimitRangeList", "required": true }, @@ -4320,11 +3695,9 @@ }, "kubernetes_core_LimitRangeSpec": { "type": "object", - "description": "", "properties": { "limits": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRangeItem", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRangeItem" @@ -4339,15 +3712,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4358,11 +3728,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -4378,11 +3746,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4393,15 +3759,12 @@ }, "kubernetes_core_LocalVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4412,19 +3775,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4435,17 +3794,14 @@ }, "kubernetes_core_Namespace": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Namespace", "required": true }, @@ -4470,27 +3826,22 @@ }, "kubernetes_core_NamespaceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4501,17 +3852,14 @@ }, "kubernetes_core_NamespaceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Namespace", "existingJavaType": "io.fabric8.kubernetes.api.model.Namespace" @@ -4519,7 +3867,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NamespaceList", "required": true }, @@ -4537,15 +3884,12 @@ }, "kubernetes_core_NamespaceSpec": { "type": "object", - "description": "", "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4557,11 +3901,9 @@ }, "kubernetes_core_NamespaceStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -4569,8 +3911,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4581,17 +3922,14 @@ }, "kubernetes_core_Node": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Node", "required": true }, @@ -4616,15 +3954,12 @@ }, "kubernetes_core_NodeAddress": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4635,11 +3970,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -4659,7 +3992,6 @@ }, "kubernetes_core_NodeCondition": { "type": "object", - "description": "", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4670,20 +4002,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4694,7 +4022,6 @@ }, "kubernetes_core_NodeConfigSource": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapNodeConfigSource", @@ -4709,7 +4036,6 @@ }, "kubernetes_core_NodeConfigStatus": { "type": "object", - "description": "", "properties": { "active": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4720,8 +4046,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4736,7 +4061,6 @@ }, "kubernetes_core_NodeDaemonEndpoints": { "type": "object", - "description": "", "properties": { "kubeletEndpoint": { "$ref": "#/definitions/kubernetes_core_DaemonEndpoint", @@ -4751,17 +4075,14 @@ }, "kubernetes_core_NodeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Node", "existingJavaType": "io.fabric8.kubernetes.api.model.Node" @@ -4769,7 +4090,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeList", "required": true }, @@ -4787,11 +4107,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -4806,23 +4124,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4834,11 +4147,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4847,7 +4158,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4863,36 +4173,29 @@ }, "kubernetes_core_NodeSpec": { "type": "object", - "description": "", "properties": { "configSource": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "podCIDR": { - "type": "string", - "description": "" + "type": "string" }, "podCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "providerID": { - "type": "string", - "description": "" + "type": "string" }, "taints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Taint", @@ -4900,8 +4203,7 @@ } }, "unschedulable": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4912,11 +4214,9 @@ }, "kubernetes_core_NodeStatus": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeAddress", @@ -4925,7 +4225,6 @@ }, "allocatable": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4934,7 +4233,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4943,7 +4241,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeCondition", @@ -4960,7 +4257,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerImage", @@ -4972,12 +4268,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSystemInfo" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "volumesAttached": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_AttachedVolume", @@ -4986,11 +4280,9 @@ }, "volumesInUse": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5002,47 +4294,36 @@ }, "kubernetes_core_NodeSystemInfo": { "type": "object", - "description": "", "properties": { "architecture": { - "type": "string", - "description": "" + "type": "string" }, "bootID": { - "type": "string", - "description": "" + "type": "string" }, "containerRuntimeVersion": { - "type": "string", - "description": "" + "type": "string" }, "kernelVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeProxyVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeletVersion": { - "type": "string", - "description": "" + "type": "string" }, "machineID": { - "type": "string", - "description": "" + "type": "string" }, "operatingSystem": { - "type": "string", - "description": "" + "type": "string" }, "osImage": { - "type": "string", - "description": "" + "type": "string" }, "systemUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5053,15 +4334,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5072,35 +4350,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5111,17 +4381,14 @@ }, "kubernetes_core_PersistentVolume": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolume", "required": true }, @@ -5146,17 +4413,14 @@ }, "kubernetes_core_PersistentVolumeClaim": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaim", "required": true }, @@ -5182,7 +4446,6 @@ }, "kubernetes_core_PersistentVolumeClaimCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5193,20 +4456,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5217,17 +4476,14 @@ }, "kubernetes_core_PersistentVolumeClaimList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim" @@ -5235,7 +4491,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaimList", "required": true }, @@ -5253,15 +4508,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -5277,16 +4529,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5297,20 +4546,16 @@ }, "kubernetes_core_PersistentVolumeClaimStatus": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -5319,7 +4564,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -5327,8 +4571,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5339,7 +4582,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -5358,15 +4600,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -5377,17 +4616,14 @@ }, "kubernetes_core_PersistentVolumeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolume", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolume" @@ -5395,7 +4631,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeList", "required": true }, @@ -5413,7 +4648,6 @@ }, "kubernetes_core_PersistentVolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -5512,15 +4746,12 @@ }, "kubernetes_core_PersistentVolumeSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -5537,7 +4768,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -5594,11 +4824,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -5610,8 +4838,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -5634,16 +4861,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -5658,19 +4883,15 @@ }, "kubernetes_core_PersistentVolumeStatus": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5681,15 +4902,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5700,17 +4918,14 @@ }, "kubernetes_core_Pod": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pod", "required": true }, @@ -5736,11 +4951,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5749,7 +4962,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5765,7 +4977,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -5773,16 +4984,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5793,11 +5001,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5806,7 +5012,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5822,7 +5027,6 @@ }, "kubernetes_core_PodCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5833,20 +5037,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5857,20 +5057,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -5879,11 +5075,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5895,15 +5089,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5914,11 +5105,9 @@ }, "kubernetes_core_PodIP": { "type": "object", - "description": "", "properties": { "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5929,17 +5118,14 @@ }, "kubernetes_core_PodList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Pod", "existingJavaType": "io.fabric8.kubernetes.api.model.Pod" @@ -5947,7 +5133,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodList", "required": true }, @@ -5965,11 +5150,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5980,29 +5163,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -6015,17 +5192,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -6045,11 +5219,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -6057,12 +5229,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -6073,16 +5243,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -6091,7 +5258,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -6099,24 +5265,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6125,7 +5286,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -6133,21 +5293,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6155,20 +5311,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -6176,49 +5328,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -6227,7 +5369,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -6236,7 +5377,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -6252,11 +5392,9 @@ }, "kubernetes_core_PodStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodCondition", @@ -6265,7 +5403,6 @@ }, "containerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6274,7 +5411,6 @@ }, "ephemeralContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6282,12 +5418,10 @@ } }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "initContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6295,24 +5429,19 @@ } }, "message": { - "type": "string", - "description": "" + "type": "string" }, "nominatedNodeName": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "podIP": { - "type": "string", - "description": "" + "type": "string" }, "podIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodIP", @@ -6320,12 +5449,10 @@ } }, "qosClass": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6340,17 +5467,14 @@ }, "kubernetes_core_PodTemplate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -6372,17 +5496,14 @@ }, "kubernetes_core_PodTemplateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PodTemplate", "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplate" @@ -6390,7 +5511,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodTemplateList", "required": true }, @@ -6408,7 +5528,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -6427,19 +5546,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6450,15 +5565,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6469,39 +5582,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6512,15 +5619,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -6535,31 +5639,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6570,43 +5667,34 @@ }, "kubernetes_core_RBDPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6617,43 +5705,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6664,17 +5743,14 @@ }, "kubernetes_core_ReplicationController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicationController", "required": true }, @@ -6700,27 +5776,22 @@ }, "kubernetes_core_ReplicationControllerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6731,17 +5802,14 @@ }, "kubernetes_core_ReplicationControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ReplicationController", "existingJavaType": "io.fabric8.kubernetes.api.model.ReplicationController" @@ -6749,7 +5817,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicationControllerList", "required": true }, @@ -6767,22 +5834,17 @@ }, "kubernetes_core_ReplicationControllerSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6799,15 +5861,12 @@ }, "kubernetes_core_ReplicationControllerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ReplicationControllerCondition", @@ -6815,21 +5874,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6840,19 +5895,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6863,17 +5915,14 @@ }, "kubernetes_core_ResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ResourceQuota", "required": true }, @@ -6899,17 +5948,14 @@ }, "kubernetes_core_ResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ResourceQuota", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceQuota" @@ -6917,7 +5963,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ResourceQuotaList", "required": true }, @@ -6935,11 +5980,9 @@ }, "kubernetes_core_ResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6952,11 +5995,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6968,11 +6009,9 @@ }, "kubernetes_core_ResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6981,7 +6020,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -6997,11 +6035,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -7010,7 +6046,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -7026,23 +6061,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7053,47 +6083,37 @@ }, "kubernetes_core_ScaleIOPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7104,47 +6124,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7155,11 +6165,9 @@ }, "kubernetes_core_ScopeSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -7175,23 +6183,18 @@ }, "kubernetes_core_ScopedResourceSelectorRequirement": { "type": "object", - "description": "", "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7203,15 +6206,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7222,30 +6222,24 @@ }, "kubernetes_core_Secret": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "Secret", "required": true }, @@ -7255,16 +6249,13 @@ }, "stringData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7276,15 +6267,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7295,19 +6283,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7318,17 +6302,14 @@ }, "kubernetes_core_SecretList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Secret", "existingJavaType": "io.fabric8.kubernetes.api.model.Secret" @@ -7336,7 +6317,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecretList", "required": true }, @@ -7354,11 +6334,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7366,12 +6344,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7382,15 +6358,12 @@ }, "kubernetes_core_SecretReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7401,15 +6374,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7417,12 +6387,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7433,40 +6401,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -7490,17 +6450,14 @@ }, "kubernetes_core_Service": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -7526,21 +6483,17 @@ }, "kubernetes_core_ServiceAccount": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7549,7 +6502,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccount", "required": true }, @@ -7559,7 +6511,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -7576,17 +6527,14 @@ }, "kubernetes_core_ServiceAccountList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ServiceAccount", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceAccount" @@ -7594,7 +6542,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccountList", "required": true }, @@ -7612,20 +6559,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7636,17 +6579,14 @@ }, "kubernetes_core_ServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Service", "existingJavaType": "io.fabric8.kubernetes.api.model.Service" @@ -7654,7 +6594,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, @@ -7672,29 +6611,23 @@ }, "kubernetes_core_ServicePort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "nodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7709,53 +6642,41 @@ }, "kubernetes_core_ServiceSpec": { "type": "object", - "description": "", "properties": { "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "externalIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "externalTrafficPolicy": { - "type": "string", - "description": "" + "type": "string" }, "healthCheckNodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "ipFamily": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerIP": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerSourceRanges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ServicePort", @@ -7763,21 +6684,17 @@ } }, "publishNotReadyAddresses": { - "type": "boolean", - "description": "" + "type": "boolean" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "sessionAffinity": { - "type": "string", - "description": "" + "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/kubernetes_core_SessionAffinityConfig", @@ -7785,16 +6702,13 @@ }, "topologyKeys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7805,7 +6719,6 @@ }, "kubernetes_core_ServiceStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -7820,7 +6733,6 @@ }, "kubernetes_core_SessionAffinityConfig": { "type": "object", - "description": "", "properties": { "clientIP": { "$ref": "#/definitions/kubernetes_core_ClientIPConfig", @@ -7835,27 +6747,22 @@ }, "kubernetes_core_StorageOSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7866,27 +6773,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7897,15 +6799,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7916,11 +6815,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7935,23 +6832,19 @@ }, "kubernetes_core_Taint": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "timeAdded": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7962,28 +6855,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7994,23 +6881,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8021,19 +6904,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8044,7 +6923,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8120,7 +6998,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -8177,15 +7054,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8196,31 +7070,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8231,7 +7098,6 @@ }, "kubernetes_core_VolumeNodeAffinity": { "type": "object", - "description": "", "properties": { "required": { "$ref": "#/definitions/kubernetes_core_NodeSelector", @@ -8246,7 +7112,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -8273,7 +7138,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8400,23 +7264,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8427,15 +7286,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -8446,19 +7303,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8718,19 +7571,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -8738,7 +7588,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -8747,7 +7596,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -8760,13 +7608,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -8774,7 +7620,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -8784,12 +7629,10 @@ "attachedvolume": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8797,20 +7640,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8818,28 +7657,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8847,20 +7680,16 @@ "azurefilepersistentvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8868,16 +7697,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8886,13 +7712,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Binding", "required": true }, @@ -8911,20 +7735,16 @@ "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8934,31 +7754,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8967,31 +7781,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8999,20 +7807,17 @@ "cinderpersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9020,20 +7825,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9041,8 +7843,7 @@ "clientipconfig": { "properties": { "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9050,20 +7851,16 @@ "componentcondition": { "properties": { "error": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9072,13 +7869,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ComponentCondition", @@ -9087,7 +7882,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatus", "required": true }, @@ -9102,13 +7896,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ComponentStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.ComponentStatus" @@ -9116,7 +7908,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatusList", "required": true }, @@ -9131,35 +7922,28 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "binaryData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ConfigMap", "required": true }, @@ -9173,12 +7957,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9186,16 +7968,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9204,13 +7983,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ConfigMap", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMap" @@ -9218,7 +7995,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigMapList", "required": true }, @@ -9232,24 +8008,19 @@ "configmapnodeconfigsource": { "properties": { "kubeletConfigKey": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9258,7 +8029,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -9266,12 +8036,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9279,12 +8047,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -9292,12 +8058,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9306,25 +8070,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -9333,7 +8092,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -9341,12 +8099,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -9358,13 +8114,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -9388,28 +8142,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -9418,7 +8166,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -9426,8 +8173,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9436,15 +8182,12 @@ "properties": { "names": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "sizeBytes": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -9453,26 +8196,21 @@ "containerport": { "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9506,28 +8244,23 @@ "containerstateterminated": { "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "exitCode": { - "type": "integer", - "description": "" + "type": "integer" }, "finishedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "signal": { - "type": "integer", - "description": "" + "type": "integer" }, "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -9539,12 +8272,10 @@ "containerstatewaiting": { "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9552,16 +8283,13 @@ "containerstatus": { "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "lastState": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -9569,21 +8297,17 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ready": { - "type": "boolean", - "description": "" + "type": "boolean" }, "restartCount": { - "type": "integer", - "description": "" + "type": "integer" }, "started": { - "type": "boolean", - "description": "" + "type": "boolean" }, "state": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -9596,7 +8320,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, @@ -9606,7 +8329,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ControllerRevision", "required": true }, @@ -9616,7 +8338,6 @@ }, "revision": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -9626,13 +8347,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_ControllerRevision", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.ControllerRevision" @@ -9640,7 +8359,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ControllerRevisionList", "required": true }, @@ -9655,26 +8373,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -9692,12 +8405,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -9708,21 +8419,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9730,27 +8437,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -9760,8 +8462,7 @@ "daemonendpoint": { "properties": { "Port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9770,13 +8471,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DaemonSet", "required": true }, @@ -9802,20 +8501,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9824,13 +8519,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_DaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.DaemonSet" @@ -9838,7 +8531,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DaemonSetList", "required": true }, @@ -9852,12 +8544,10 @@ "daemonsetspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -9877,12 +8567,10 @@ "daemonsetstatus": { "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DaemonSetCondition", @@ -9890,37 +8578,29 @@ } }, "currentNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberAvailable": { - "type": "integer", - "description": "" + "type": "integer" }, "numberMisscheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberReady": { - "type": "integer", - "description": "" + "type": "integer" }, "numberUnavailable": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatedNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9932,8 +8612,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDaemonSet" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9942,41 +8621,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9985,13 +8657,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -10021,20 +8691,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10043,13 +8709,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_Deployment", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.Deployment" @@ -10057,7 +8721,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentList", "required": true }, @@ -10071,24 +8734,19 @@ "deploymentspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -10108,16 +8766,13 @@ "deploymentstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DeploymentCondition", @@ -10126,24 +8781,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -10155,8 +8805,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10165,7 +8814,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -10182,12 +8830,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -10199,12 +8845,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -10217,8 +8861,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -10230,16 +8873,13 @@ "endpointaddress": { "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10251,22 +8891,18 @@ "endpointport": { "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10275,13 +8911,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Endpoints", "required": true }, @@ -10291,7 +8925,6 @@ }, "subsets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointSubset", @@ -10305,13 +8938,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Endpoints", "existingJavaType": "io.fabric8.kubernetes.api.model.Endpoints" @@ -10319,7 +8950,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointsList", "required": true }, @@ -10334,7 +8964,6 @@ "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -10343,7 +8972,6 @@ }, "notReadyAddresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -10352,7 +8980,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointPort", @@ -10369,8 +8996,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -10383,12 +9009,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -10422,25 +9046,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10449,7 +9068,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -10457,12 +9075,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -10473,12 +9089,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -10502,32 +9116,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -10536,7 +9143,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -10544,8 +9150,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10554,25 +9159,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10581,7 +9181,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -10589,12 +9188,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -10605,12 +9202,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -10634,28 +9229,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -10664,7 +9253,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -10672,8 +9260,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10681,8 +9268,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -10695,11 +9281,9 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10708,33 +9292,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10746,25 +9323,20 @@ "flexpersistentvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -10776,25 +9348,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -10806,12 +9373,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10819,20 +9384,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -10841,19 +9402,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10861,16 +9419,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10878,20 +9433,16 @@ "glusterfspersistentvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -10899,16 +9450,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -10916,12 +9464,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10947,16 +9493,13 @@ "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10964,12 +9507,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10977,12 +9518,10 @@ "httpgetaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -10990,16 +9529,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11007,12 +9544,10 @@ "httpheader": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11023,40 +9558,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11064,16 +9590,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -11082,53 +9605,42 @@ "iscsipersistentvolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11136,53 +9648,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11190,16 +9691,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11208,7 +9706,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -11217,10 +9714,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -11230,20 +9725,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -11266,13 +9757,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LimitRange", "required": true }, @@ -11291,7 +9780,6 @@ "properties": { "default": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -11300,7 +9788,6 @@ }, "defaultRequest": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -11309,7 +9796,6 @@ }, "max": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -11318,7 +9804,6 @@ }, "maxLimitRequestRatio": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -11327,7 +9812,6 @@ }, "min": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -11335,8 +9819,7 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11345,13 +9828,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRange", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRange" @@ -11359,7 +9840,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LimitRangeList", "required": true }, @@ -11374,7 +9854,6 @@ "properties": { "limits": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRangeItem", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRangeItem" @@ -11387,13 +9866,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -11401,7 +9878,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -11415,21 +9891,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11437,54 +9909,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -11492,12 +9953,10 @@ "loadbalanceringress": { "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11506,7 +9965,6 @@ "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -11519,8 +9977,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11528,12 +9985,10 @@ "localvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11541,24 +9996,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -11571,13 +10022,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Namespace", "required": true }, @@ -11603,20 +10052,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11625,13 +10070,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Namespace", "existingJavaType": "io.fabric8.kubernetes.api.model.Namespace" @@ -11639,7 +10082,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NamespaceList", "required": true }, @@ -11654,11 +10096,9 @@ "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -11668,7 +10108,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -11676,8 +10115,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11685,16 +10123,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11703,13 +10138,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Node", "required": true }, @@ -11731,12 +10164,10 @@ "nodeaddress": { "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11745,7 +10176,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -11770,20 +10200,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11808,8 +10234,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -11831,13 +10256,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Node", "existingJavaType": "io.fabric8.kubernetes.api.model.Node" @@ -11845,7 +10268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeList", "required": true }, @@ -11860,7 +10282,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -11872,20 +10293,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -11895,7 +10312,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -11904,7 +10320,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -11921,29 +10336,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "podCIDR": { - "type": "string", - "description": "" + "type": "string" }, "podCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "providerID": { - "type": "string", - "description": "" + "type": "string" }, "taints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Taint", @@ -11951,8 +10360,7 @@ } }, "unschedulable": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -11961,7 +10369,6 @@ "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeAddress", @@ -11970,7 +10377,6 @@ }, "allocatable": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -11979,7 +10385,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -11988,7 +10393,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeCondition", @@ -12005,7 +10409,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerImage", @@ -12017,12 +10420,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSystemInfo" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "volumesAttached": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_AttachedVolume", @@ -12031,11 +10432,9 @@ }, "volumesInUse": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12044,44 +10443,34 @@ "nodesysteminfo": { "properties": { "architecture": { - "type": "string", - "description": "" + "type": "string" }, "bootID": { - "type": "string", - "description": "" + "type": "string" }, "containerRuntimeVersion": { - "type": "string", - "description": "" + "type": "string" }, "kernelVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeProxyVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeletVersion": { - "type": "string", - "description": "" + "type": "string" }, "machineID": { - "type": "string", - "description": "" + "type": "string" }, "operatingSystem": { - "type": "string", - "description": "" + "type": "string" }, "osImage": { - "type": "string", - "description": "" + "type": "string" }, "systemUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12089,12 +10478,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12103,16 +10490,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -12120,7 +10504,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -12129,34 +10512,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -12164,18 +10540,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -12183,16 +10556,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12200,32 +10570,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12233,28 +10596,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12266,30 +10623,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -12300,13 +10651,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolume", "required": true }, @@ -12329,13 +10678,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaim", "required": true }, @@ -12365,20 +10712,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12387,13 +10730,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim" @@ -12401,7 +10742,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaimList", "required": true }, @@ -12416,11 +10756,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -12436,16 +10774,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12454,16 +10789,13 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -12472,7 +10804,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -12480,8 +10811,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12502,12 +10832,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -12516,13 +10844,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolume", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolume" @@ -12530,7 +10856,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeList", "required": true }, @@ -12638,11 +10963,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -12659,7 +10982,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -12716,11 +11038,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -12732,8 +11052,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -12756,16 +11075,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -12777,16 +11094,13 @@ "persistentvolumestatus": { "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12794,12 +11108,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12808,13 +11120,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pod", "required": true }, @@ -12837,7 +11147,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -12846,7 +11155,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -12864,16 +11172,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12882,7 +11187,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -12891,7 +11195,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -12912,20 +11215,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12934,16 +11233,13 @@ "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -12952,11 +11248,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12965,12 +11259,10 @@ "poddnsconfigoption": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12978,8 +11270,7 @@ "podip": { "properties": { "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12988,13 +11279,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Pod", "existingJavaType": "io.fabric8.kubernetes.api.model.Pod" @@ -13002,7 +11291,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodList", "required": true }, @@ -13016,8 +11304,7 @@ "podreadinessgate": { "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13026,25 +11313,20 @@ "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -13057,17 +11339,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -13085,7 +11364,6 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -13093,12 +11371,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -13109,16 +11385,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -13127,7 +11400,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -13135,24 +11407,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -13161,7 +11428,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -13169,21 +11435,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -13191,20 +11453,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -13212,49 +11470,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -13263,7 +11511,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -13272,7 +11519,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -13286,7 +11532,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodCondition", @@ -13295,7 +11540,6 @@ }, "containerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -13304,7 +11548,6 @@ }, "ephemeralContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -13312,12 +11555,10 @@ } }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "initContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -13325,24 +11566,19 @@ } }, "message": { - "type": "string", - "description": "" + "type": "string" }, "nominatedNodeName": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "podIP": { - "type": "string", - "description": "" + "type": "string" }, "podIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodIP", @@ -13350,12 +11586,10 @@ } }, "qosClass": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -13368,13 +11602,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -13393,13 +11625,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PodTemplate", "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplate" @@ -13407,7 +11637,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodTemplateList", "required": true }, @@ -13434,16 +11663,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13451,12 +11677,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13468,8 +11692,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -13481,32 +11704,27 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -13514,12 +11732,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -13531,8 +11747,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13540,28 +11755,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13572,40 +11781,32 @@ "rbdpersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13613,40 +11814,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13655,13 +11848,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicaSet", "required": true }, @@ -13687,20 +11878,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13709,13 +11896,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_ReplicaSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.ReplicaSet" @@ -13723,7 +11908,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicaSetList", "required": true }, @@ -13737,12 +11921,10 @@ "replicasetspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -13758,12 +11940,10 @@ "replicasetstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_ReplicaSetCondition", @@ -13771,21 +11951,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -13794,13 +11970,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicationController", "required": true }, @@ -13826,20 +12000,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13848,13 +12018,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ReplicationController", "existingJavaType": "io.fabric8.kubernetes.api.model.ReplicationController" @@ -13862,7 +12030,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicationControllerList", "required": true }, @@ -13876,19 +12043,15 @@ "replicationcontrollerspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -13902,12 +12065,10 @@ "replicationcontrollerstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ReplicationControllerCondition", @@ -13915,21 +12076,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -13937,16 +12094,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13955,13 +12110,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ResourceQuota", "required": true }, @@ -13984,13 +12137,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ResourceQuota", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceQuota" @@ -13998,7 +12149,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ResourceQuotaList", "required": true }, @@ -14013,7 +12163,6 @@ "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -14026,11 +12175,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -14040,7 +12187,6 @@ "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -14049,7 +12195,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -14063,7 +12208,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -14072,7 +12216,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -14107,8 +12250,7 @@ "rollingupdatestatefulsetstrategy": { "properties": { "partition": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -14117,10 +12259,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -14129,44 +12269,35 @@ "scaleiopersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14174,44 +12305,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14219,20 +12341,16 @@ "scopedresourceselectorrequirement": { "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -14242,7 +12360,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -14255,12 +12372,10 @@ "seccompprofile": { "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14269,26 +12384,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "Secret", "required": true }, @@ -14298,16 +12408,13 @@ }, "stringData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14315,12 +12422,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -14328,16 +12433,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -14346,13 +12448,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Secret", "existingJavaType": "io.fabric8.kubernetes.api.model.Secret" @@ -14360,7 +12460,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecretList", "required": true }, @@ -14375,7 +12474,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -14383,12 +12481,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -14396,12 +12492,10 @@ "secretreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14409,12 +12503,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -14422,12 +12514,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14435,37 +12525,30 @@ "securitycontext": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -14486,20 +12569,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14507,12 +12586,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14521,13 +12598,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -14550,17 +12625,14 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -14569,7 +12641,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccount", "required": true }, @@ -14579,7 +12650,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -14593,13 +12663,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ServiceAccount", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceAccount" @@ -14607,7 +12675,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccountList", "required": true }, @@ -14621,17 +12688,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14640,13 +12704,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Service", "existingJavaType": "io.fabric8.kubernetes.api.model.Service" @@ -14654,7 +12716,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, @@ -14668,26 +12729,21 @@ "serviceport": { "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "nodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -14699,50 +12755,39 @@ "servicespec": { "properties": { "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "externalIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "externalTrafficPolicy": { - "type": "string", - "description": "" + "type": "string" }, "healthCheckNodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "ipFamily": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerIP": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerSourceRanges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ServicePort", @@ -14750,21 +12795,17 @@ } }, "publishNotReadyAddresses": { - "type": "boolean", - "description": "" + "type": "boolean" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "sessionAffinity": { - "type": "string", - "description": "" + "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/kubernetes_core_SessionAffinityConfig", @@ -14772,16 +12813,13 @@ }, "topologyKeys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14808,13 +12846,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "StatefulSet", "required": true }, @@ -14840,20 +12876,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14862,13 +12894,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apps_StatefulSet", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.StatefulSet" @@ -14876,7 +12906,6 @@ }, "kind": { "type": "string", - "description": "", "default": "StatefulSetList", "required": true }, @@ -14890,24 +12919,20 @@ "statefulsetspec": { "properties": { "podManagementPolicy": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -14919,7 +12944,6 @@ }, "volumeClaimTemplates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", @@ -14932,12 +12956,10 @@ "statefulsetstatus": { "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_StatefulSetCondition", @@ -14945,33 +12967,26 @@ } }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "currentRevision": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updateRevision": { - "type": "string", - "description": "" + "type": "string" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -14983,8 +12998,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateStatefulSetStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14993,13 +13007,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -15007,25 +13019,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15033,16 +13041,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15051,7 +13056,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -15059,24 +13063,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15084,24 +13083,20 @@ "storageospersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15109,24 +13104,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15134,12 +13125,10 @@ "sysctl": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15147,20 +13136,17 @@ "taint": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "timeAdded": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15168,8 +13154,7 @@ "tcpsocketaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -15181,8 +13166,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15190,25 +13174,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15220,16 +13199,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15237,16 +13213,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15254,12 +13227,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15268,26 +13239,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -15370,7 +13336,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -15424,12 +13389,10 @@ "volumedevice": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15437,28 +13400,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15617,20 +13574,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15642,8 +13595,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -15651,16 +13603,13 @@ "windowssecuritycontextoptions": { "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/kube-schema.json index 9c9b0901fa1..0ab4707d284 100644 --- a/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/kube-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,30 +74,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -120,45 +104,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -169,7 +145,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -178,23 +153,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -205,15 +176,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -224,11 +192,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -237,10 +203,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -253,23 +217,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -281,17 +240,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -299,7 +255,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -317,24 +272,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -345,57 +295,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -406,27 +344,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -441,20 +374,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -462,7 +391,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -471,34 +399,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -506,18 +427,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -525,16 +443,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -545,31 +460,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -580,7 +488,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -589,34 +496,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -629,15 +529,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -648,14 +545,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -667,15 +561,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -686,17 +577,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -704,25 +592,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -733,19 +617,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -756,11 +636,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -768,24 +646,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -796,11 +669,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,15 +682,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -830,30 +698,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -866,7 +728,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -875,7 +736,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -884,43 +744,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -931,19 +781,15 @@ }, "kubernetes_autoscaling_v1_CrossVersionObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -954,17 +800,14 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscaler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscaler", "required": true }, @@ -990,17 +833,14 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscalerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v1_HorizontalPodAutoscaler", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v1.HorizontalPodAutoscaler" @@ -1008,7 +848,6 @@ }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscalerList", "required": true }, @@ -1026,23 +865,19 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscalerSpec": { "type": "object", - "description": "", "properties": { "maxReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "minReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/kubernetes_autoscaling_v1_CrossVersionObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v1.CrossVersionObjectReference" }, "targetCPUUtilizationPercentage": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1053,19 +888,15 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscalerStatus": { "type": "object", - "description": "", "properties": { "currentCPUUtilizationPercentage": { - "type": "integer", - "description": "" + "type": "integer" }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1073,7 +904,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1085,17 +915,14 @@ }, "kubernetes_autoscaling_v1_Scale": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Scale", "required": true }, @@ -1121,11 +948,9 @@ }, "kubernetes_autoscaling_v1_ScaleSpec": { "type": "object", - "description": "", "properties": { "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1136,15 +961,12 @@ }, "kubernetes_autoscaling_v1_ScaleStatus": { "type": "object", - "description": "", "properties": { "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1155,19 +977,15 @@ }, "kubernetes_autoscaling_v2beta1_CrossVersionObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1178,11 +996,9 @@ }, "kubernetes_autoscaling_v2beta1_ExternalMetricSource": { "type": "object", - "description": "", "properties": { "metricName": { - "type": "string", - "description": "" + "type": "string" }, "metricSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1205,7 +1021,6 @@ }, "kubernetes_autoscaling_v2beta1_ExternalMetricStatus": { "type": "object", - "description": "", "properties": { "currentAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1216,8 +1031,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "metricSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1232,17 +1046,14 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscaler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscaler", "required": true }, @@ -1268,27 +1079,22 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1299,17 +1105,14 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_HorizontalPodAutoscaler", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.HorizontalPodAutoscaler" @@ -1317,7 +1120,6 @@ }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscalerList", "required": true }, @@ -1335,15 +1137,12 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerSpec": { "type": "object", - "description": "", "properties": { "maxReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "metrics": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_MetricSpec", @@ -1351,8 +1150,7 @@ } }, "minReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_CrossVersionObjectReference", @@ -1367,11 +1165,9 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.HorizontalPodAutoscalerCondition" @@ -1379,19 +1175,16 @@ }, "currentMetrics": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_MetricStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.MetricStatus" } }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1399,7 +1192,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1411,7 +1203,6 @@ }, "kubernetes_autoscaling_v2beta1_MetricSpec": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ExternalMetricSource", @@ -1430,8 +1221,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1442,7 +1232,6 @@ }, "kubernetes_autoscaling_v2beta1_MetricStatus": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ExternalMetricStatus", @@ -1461,8 +1250,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1473,15 +1261,13 @@ }, "kubernetes_autoscaling_v2beta1_ObjectMetricSource": { "type": "object", - "description": "", "properties": { "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1504,7 +1290,6 @@ }, "kubernetes_autoscaling_v2beta1_ObjectMetricStatus": { "type": "object", - "description": "", "properties": { "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1515,8 +1300,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1535,11 +1319,9 @@ }, "kubernetes_autoscaling_v2beta1_PodsMetricSource": { "type": "object", - "description": "", "properties": { "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1558,15 +1340,13 @@ }, "kubernetes_autoscaling_v2beta1_PodsMetricStatus": { "type": "object", - "description": "", "properties": { "currentAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1581,15 +1361,12 @@ }, "kubernetes_autoscaling_v2beta1_ResourceMetricSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "targetAverageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "targetAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1604,19 +1381,16 @@ }, "kubernetes_autoscaling_v2beta1_ResourceMetricStatus": { "type": "object", - "description": "", "properties": { "currentAverageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "currentAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1627,19 +1401,15 @@ }, "kubernetes_autoscaling_v2beta2_CrossVersionObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1650,7 +1420,6 @@ }, "kubernetes_autoscaling_v2beta2_ExternalMetricSource": { "type": "object", - "description": "", "properties": { "metric": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricIdentifier", @@ -1669,7 +1438,6 @@ }, "kubernetes_autoscaling_v2beta2_ExternalMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", @@ -1688,19 +1456,15 @@ }, "kubernetes_autoscaling_v2beta2_HPAScalingPolicy": { "type": "object", - "description": "", "properties": { "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1711,11 +1475,9 @@ }, "kubernetes_autoscaling_v2beta2_HPAScalingRules": { "type": "object", - "description": "", "properties": { "policies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HPAScalingPolicy", @@ -1723,12 +1485,10 @@ } }, "selectPolicy": { - "type": "string", - "description": "" + "type": "string" }, "stabilizationWindowSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1739,17 +1499,14 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscaler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta2", "required": true }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscaler", "required": true }, @@ -1775,7 +1532,6 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior": { "type": "object", - "description": "", "properties": { "scaleDown": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HPAScalingRules", @@ -1794,27 +1550,22 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1825,17 +1576,14 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta2", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscaler", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscaler" @@ -1843,7 +1591,6 @@ }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscalerList", "required": true }, @@ -1861,19 +1608,16 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerSpec": { "type": "object", - "description": "", "properties": { "behavior": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior" }, "maxReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "metrics": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricSpec", @@ -1881,8 +1625,7 @@ } }, "minReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_CrossVersionObjectReference", @@ -1897,11 +1640,9 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscalerCondition" @@ -1909,19 +1650,16 @@ }, "currentMetrics": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricStatus" } }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1929,7 +1667,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1941,11 +1678,9 @@ }, "kubernetes_autoscaling_v2beta2_MetricIdentifier": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1960,7 +1695,6 @@ }, "kubernetes_autoscaling_v2beta2_MetricSpec": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ExternalMetricSource", @@ -1979,8 +1713,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ResourceMetricSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1991,7 +1724,6 @@ }, "kubernetes_autoscaling_v2beta2_MetricStatus": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ExternalMetricStatus", @@ -2010,8 +1742,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ResourceMetricStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2022,19 +1753,16 @@ }, "kubernetes_autoscaling_v2beta2_MetricTarget": { "type": "object", - "description": "", "properties": { "averageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2049,11 +1777,9 @@ }, "kubernetes_autoscaling_v2beta2_MetricValueStatus": { "type": "object", - "description": "", "properties": { "averageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2072,7 +1798,6 @@ }, "kubernetes_autoscaling_v2beta2_ObjectMetricSource": { "type": "object", - "description": "", "properties": { "describedObject": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_CrossVersionObjectReference", @@ -2095,7 +1820,6 @@ }, "kubernetes_autoscaling_v2beta2_ObjectMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", @@ -2118,7 +1842,6 @@ }, "kubernetes_autoscaling_v2beta2_PodsMetricSource": { "type": "object", - "description": "", "properties": { "metric": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricIdentifier", @@ -2137,7 +1860,6 @@ }, "kubernetes_autoscaling_v2beta2_PodsMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", @@ -2156,11 +1878,9 @@ }, "kubernetes_autoscaling_v2beta2_ResourceMetricSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "target": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricTarget", @@ -2175,15 +1895,13 @@ }, "kubernetes_autoscaling_v2beta2_ResourceMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2194,11 +1912,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/validation-schema.json index c4d7a1c183f..c888321a5c8 100644 --- a/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-autoscaling/src/main/resources/schema/validation-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,30 +74,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -120,45 +104,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -169,7 +145,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -178,23 +153,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -205,15 +176,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -224,11 +192,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -237,10 +203,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -253,23 +217,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -281,17 +240,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -299,7 +255,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -317,24 +272,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -345,57 +295,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -406,27 +344,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -441,20 +374,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -462,7 +391,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -471,34 +399,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -506,18 +427,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -525,16 +443,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -545,31 +460,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -580,7 +488,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -589,34 +496,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -629,15 +529,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -648,14 +545,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -667,15 +561,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -686,17 +577,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -704,25 +592,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -733,19 +617,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -756,11 +636,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -768,24 +646,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -796,11 +669,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,15 +682,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -830,30 +698,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -866,7 +728,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -875,7 +736,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -884,43 +744,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -931,19 +781,15 @@ }, "kubernetes_autoscaling_v1_CrossVersionObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -954,17 +800,14 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscaler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscaler", "required": true }, @@ -990,17 +833,14 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscalerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v1_HorizontalPodAutoscaler", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v1.HorizontalPodAutoscaler" @@ -1008,7 +848,6 @@ }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscalerList", "required": true }, @@ -1026,23 +865,19 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscalerSpec": { "type": "object", - "description": "", "properties": { "maxReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "minReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/kubernetes_autoscaling_v1_CrossVersionObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v1.CrossVersionObjectReference" }, "targetCPUUtilizationPercentage": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1053,19 +888,15 @@ }, "kubernetes_autoscaling_v1_HorizontalPodAutoscalerStatus": { "type": "object", - "description": "", "properties": { "currentCPUUtilizationPercentage": { - "type": "integer", - "description": "" + "type": "integer" }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1073,7 +904,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1085,17 +915,14 @@ }, "kubernetes_autoscaling_v1_Scale": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Scale", "required": true }, @@ -1121,11 +948,9 @@ }, "kubernetes_autoscaling_v1_ScaleSpec": { "type": "object", - "description": "", "properties": { "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1136,15 +961,12 @@ }, "kubernetes_autoscaling_v1_ScaleStatus": { "type": "object", - "description": "", "properties": { "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1155,19 +977,15 @@ }, "kubernetes_autoscaling_v2beta1_CrossVersionObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1178,11 +996,9 @@ }, "kubernetes_autoscaling_v2beta1_ExternalMetricSource": { "type": "object", - "description": "", "properties": { "metricName": { - "type": "string", - "description": "" + "type": "string" }, "metricSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1205,7 +1021,6 @@ }, "kubernetes_autoscaling_v2beta1_ExternalMetricStatus": { "type": "object", - "description": "", "properties": { "currentAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1216,8 +1031,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "metricSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1232,17 +1046,14 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscaler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscaler", "required": true }, @@ -1268,27 +1079,22 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1299,17 +1105,14 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_HorizontalPodAutoscaler", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.HorizontalPodAutoscaler" @@ -1317,7 +1120,6 @@ }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscalerList", "required": true }, @@ -1335,15 +1137,12 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerSpec": { "type": "object", - "description": "", "properties": { "maxReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "metrics": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_MetricSpec", @@ -1351,8 +1150,7 @@ } }, "minReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_CrossVersionObjectReference", @@ -1367,11 +1165,9 @@ }, "kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_HorizontalPodAutoscalerCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.HorizontalPodAutoscalerCondition" @@ -1379,19 +1175,16 @@ }, "currentMetrics": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_MetricStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.MetricStatus" } }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1399,7 +1192,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1411,7 +1203,6 @@ }, "kubernetes_autoscaling_v2beta1_MetricSpec": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ExternalMetricSource", @@ -1430,8 +1221,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1442,7 +1232,6 @@ }, "kubernetes_autoscaling_v2beta1_MetricStatus": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ExternalMetricStatus", @@ -1461,8 +1250,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1473,15 +1261,13 @@ }, "kubernetes_autoscaling_v2beta1_ObjectMetricSource": { "type": "object", - "description": "", "properties": { "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1504,7 +1290,6 @@ }, "kubernetes_autoscaling_v2beta1_ObjectMetricStatus": { "type": "object", - "description": "", "properties": { "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1515,8 +1300,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1535,11 +1319,9 @@ }, "kubernetes_autoscaling_v2beta1_PodsMetricSource": { "type": "object", - "description": "", "properties": { "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1558,15 +1340,13 @@ }, "kubernetes_autoscaling_v2beta1_PodsMetricStatus": { "type": "object", - "description": "", "properties": { "currentAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1581,15 +1361,12 @@ }, "kubernetes_autoscaling_v2beta1_ResourceMetricSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "targetAverageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "targetAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1604,19 +1381,16 @@ }, "kubernetes_autoscaling_v2beta1_ResourceMetricStatus": { "type": "object", - "description": "", "properties": { "currentAverageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "currentAverageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1627,19 +1401,15 @@ }, "kubernetes_autoscaling_v2beta2_CrossVersionObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1650,7 +1420,6 @@ }, "kubernetes_autoscaling_v2beta2_ExternalMetricSource": { "type": "object", - "description": "", "properties": { "metric": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricIdentifier", @@ -1669,7 +1438,6 @@ }, "kubernetes_autoscaling_v2beta2_ExternalMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", @@ -1688,19 +1456,15 @@ }, "kubernetes_autoscaling_v2beta2_HPAScalingPolicy": { "type": "object", - "description": "", "properties": { "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1711,11 +1475,9 @@ }, "kubernetes_autoscaling_v2beta2_HPAScalingRules": { "type": "object", - "description": "", "properties": { "policies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HPAScalingPolicy", @@ -1723,12 +1485,10 @@ } }, "selectPolicy": { - "type": "string", - "description": "" + "type": "string" }, "stabilizationWindowSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1739,17 +1499,14 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscaler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta2", "required": true }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscaler", "required": true }, @@ -1775,7 +1532,6 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior": { "type": "object", - "description": "", "properties": { "scaleDown": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HPAScalingRules", @@ -1794,27 +1550,22 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1825,17 +1576,14 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta2", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscaler", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscaler" @@ -1843,7 +1591,6 @@ }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscalerList", "required": true }, @@ -1861,19 +1608,16 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerSpec": { "type": "object", - "description": "", "properties": { "behavior": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscalerBehavior" }, "maxReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "metrics": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricSpec", @@ -1881,8 +1625,7 @@ } }, "minReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_CrossVersionObjectReference", @@ -1897,11 +1640,9 @@ }, "kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerCondition", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscalerCondition" @@ -1909,19 +1650,16 @@ }, "currentMetrics": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricStatus" } }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1929,7 +1667,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1941,11 +1678,9 @@ }, "kubernetes_autoscaling_v2beta2_MetricIdentifier": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1960,7 +1695,6 @@ }, "kubernetes_autoscaling_v2beta2_MetricSpec": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ExternalMetricSource", @@ -1979,8 +1713,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ResourceMetricSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1991,7 +1724,6 @@ }, "kubernetes_autoscaling_v2beta2_MetricStatus": { "type": "object", - "description": "", "properties": { "external": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ExternalMetricStatus", @@ -2010,8 +1742,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ResourceMetricStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2022,19 +1753,16 @@ }, "kubernetes_autoscaling_v2beta2_MetricTarget": { "type": "object", - "description": "", "properties": { "averageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2049,11 +1777,9 @@ }, "kubernetes_autoscaling_v2beta2_MetricValueStatus": { "type": "object", - "description": "", "properties": { "averageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2072,7 +1798,6 @@ }, "kubernetes_autoscaling_v2beta2_ObjectMetricSource": { "type": "object", - "description": "", "properties": { "describedObject": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_CrossVersionObjectReference", @@ -2095,7 +1820,6 @@ }, "kubernetes_autoscaling_v2beta2_ObjectMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", @@ -2118,7 +1842,6 @@ }, "kubernetes_autoscaling_v2beta2_PodsMetricSource": { "type": "object", - "description": "", "properties": { "metric": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricIdentifier", @@ -2137,7 +1860,6 @@ }, "kubernetes_autoscaling_v2beta2_PodsMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", @@ -2156,11 +1878,9 @@ }, "kubernetes_autoscaling_v2beta2_ResourceMetricSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "target": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricTarget", @@ -2175,15 +1895,13 @@ }, "kubernetes_autoscaling_v2beta2_ResourceMetricStatus": { "type": "object", - "description": "", "properties": { "current": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2194,11 +1912,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2313,19 +2029,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -2333,7 +2046,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -2342,7 +2054,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -2355,13 +2066,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -2369,7 +2078,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -2380,26 +2088,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -2409,16 +2112,13 @@ "crossversionobjectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2427,41 +2127,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2469,8 +2162,7 @@ "externalmetricsource": { "properties": { "metricName": { - "type": "string", - "description": "" + "type": "string" }, "metricSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2507,19 +2199,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2527,12 +2216,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2541,13 +2228,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v2beta2", "required": true }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscaler", "required": true }, @@ -2586,20 +2271,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2608,21 +2289,18 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "autoscaling/v2beta2", + "default": "autoscaling/v2beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscaler", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscaler" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_HorizontalPodAutoscaler", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.HorizontalPodAutoscaler" } }, "kind": { "type": "string", - "description": "", "default": "HorizontalPodAutoscalerList", "required": true }, @@ -2636,12 +2314,10 @@ "horizontalpodautoscalerspec": { "properties": { "maxReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "metrics": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_MetricSpec", @@ -2649,8 +2325,7 @@ } }, "minReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_CrossVersionObjectReference", @@ -2661,29 +2336,14 @@ }, "horizontalpodautoscalerstatus": { "properties": { - "conditions": { - "type": "array", - "description": "", - "items": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HorizontalPodAutoscalerCondition", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.HorizontalPodAutoscalerCondition" - } - }, - "currentMetrics": { - "type": "array", - "description": "", - "items": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricStatus" - } + "currentCPUUtilizationPercentage": { + "type": "integer" }, "currentReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2691,7 +2351,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2700,16 +2359,13 @@ "hpascalingpolicy": { "properties": { "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -2718,7 +2374,6 @@ "properties": { "policies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_HPAScalingPolicy", @@ -2726,12 +2381,10 @@ } }, "selectPolicy": { - "type": "string", - "description": "" + "type": "string" }, "stabilizationWindowSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -2742,40 +2395,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2784,7 +2428,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -2793,10 +2436,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -2806,20 +2447,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2829,13 +2466,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -2843,7 +2478,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -2857,21 +2491,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2879,54 +2509,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -2934,24 +2553,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2963,8 +2578,7 @@ "metricidentifier": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2976,24 +2590,23 @@ "metricspec": { "properties": { "external": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ExternalMetricSource", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ExternalMetricSource" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ExternalMetricSource", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricSource" }, "object": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ObjectMetricSource", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ObjectMetricSource" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ObjectMetricSource", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ObjectMetricSource" }, "pods": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_PodsMetricSource", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.PodsMetricSource" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_PodsMetricSource", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.PodsMetricSource" }, "resource": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ResourceMetricSource", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ResourceMetricSource" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ResourceMetricSource", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3001,24 +2614,23 @@ "metricstatus": { "properties": { "external": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ExternalMetricStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ExternalMetricStatus" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ExternalMetricStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ExternalMetricStatus" }, "object": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ObjectMetricStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ObjectMetricStatus" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ObjectMetricStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ObjectMetricStatus" }, "pods": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_PodsMetricStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.PodsMetricStatus" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_PodsMetricStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.PodsMetricStatus" }, "resource": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_ResourceMetricStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ResourceMetricStatus" + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_ResourceMetricStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3026,16 +2638,14 @@ "metrictarget": { "properties": { "averageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -3047,8 +2657,7 @@ "metricvaluestatus": { "properties": { "averageUtilization": { - "type": "integer", - "description": "" + "type": "integer" }, "averageValue": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -3065,16 +2674,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3082,7 +2688,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -3091,34 +2696,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -3126,18 +2724,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -3145,16 +2740,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3166,8 +2758,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3186,17 +2777,24 @@ }, "objectmetricstatus": { "properties": { - "current": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus" + "averageValue": { + "$ref": "#/definitions/kubernetes_resource_Quantity", + "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, - "describedObject": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_CrossVersionObjectReference", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.CrossVersionObjectReference" + "currentValue": { + "$ref": "#/definitions/kubernetes_resource_Quantity", + "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, - "metric": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricIdentifier", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifier" + "metricName": { + "type": "string" + }, + "selector": { + "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", + "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" + }, + "target": { + "$ref": "#/definitions/kubernetes_autoscaling_v2beta1_CrossVersionObjectReference", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta1.CrossVersionObjectReference" } }, "additionalProperties": true @@ -3204,28 +2802,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3237,30 +2829,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -3270,8 +2856,7 @@ "podsmetricsource": { "properties": { "metricName": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3300,12 +2885,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3313,8 +2896,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3325,29 +2907,26 @@ "resourcemetricsource": { "properties": { "name": { - "type": "string", - "description": "" - }, - "targetAverageUtilization": { - "type": "integer", - "description": "" + "type": "string" }, - "targetAverageValue": { - "$ref": "#/definitions/kubernetes_resource_Quantity", - "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" + "target": { + "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricTarget", + "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricTarget" } }, "additionalProperties": true }, "resourcemetricstatus": { "properties": { - "current": { - "$ref": "#/definitions/kubernetes_autoscaling_v2beta2_MetricValueStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus" + "currentAverageUtilization": { + "type": "integer" + }, + "currentAverageValue": { + "$ref": "#/definitions/kubernetes_resource_Quantity", + "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3356,10 +2935,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3369,13 +2946,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "autoscaling/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Scale", "required": true }, @@ -3397,8 +2972,7 @@ "scalespec": { "properties": { "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -3406,12 +2980,10 @@ "scalestatus": { "properties": { "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3419,12 +2991,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3433,13 +3003,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -3447,25 +3015,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3473,16 +3037,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3491,7 +3052,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -3499,24 +3059,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3524,8 +3079,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3533,12 +3087,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3547,26 +3099,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/kube-schema.json index 0e2849d4750..32946a7c5ff 100644 --- a/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,17 +814,14 @@ }, "kubernetes_batch_CronJob": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CronJob", "required": true }, @@ -1006,17 +847,14 @@ }, "kubernetes_batch_CronJobList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_batch_CronJob", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.CronJob" @@ -1024,7 +862,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CronJobList", "required": true }, @@ -1042,36 +879,29 @@ }, "kubernetes_batch_CronJobSpec": { "type": "object", - "description": "", "properties": { "concurrencyPolicy": { - "type": "string", - "description": "" + "type": "string" }, "failedJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "jobTemplate": { "$ref": "#/definitions/kubernetes_batch_JobTemplateSpec", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.JobTemplateSpec" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "startingDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "successfulJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "suspend": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1082,11 +912,9 @@ }, "kubernetes_batch_CronJobStatus": { "type": "object", - "description": "", "properties": { "active": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -1106,17 +934,14 @@ }, "kubernetes_batch_Job": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Job", "required": true }, @@ -1142,7 +967,6 @@ }, "kubernetes_batch_JobCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1153,20 +977,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1177,17 +997,14 @@ }, "kubernetes_batch_JobList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_batch_Job", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.Job" @@ -1195,7 +1012,6 @@ }, "kind": { "type": "string", - "description": "", "default": "JobList", "required": true }, @@ -1213,28 +1029,22 @@ }, "kubernetes_batch_JobSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "backoffLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "completions": { - "type": "integer", - "description": "" + "type": "integer" }, "manualSelector": { - "type": "boolean", - "description": "" + "type": "boolean" }, "parallelism": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1245,8 +1055,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "ttlSecondsAfterFinished": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1257,11 +1066,9 @@ }, "kubernetes_batch_JobStatus": { "type": "object", - "description": "", "properties": { "active": { - "type": "integer", - "description": "" + "type": "integer" }, "completionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1269,7 +1076,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_batch_JobCondition", @@ -1277,16 +1083,14 @@ } }, "failed": { - "type": "integer", - "description": "" + "type": "integer" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "succeeded": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1297,7 +1101,6 @@ }, "kubernetes_batch_JobTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -1316,23 +1119,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1343,7 +1141,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1366,31 +1163,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1401,19 +1191,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1424,30 +1210,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1460,24 +1240,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1489,35 +1264,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1528,23 +1296,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1555,15 +1319,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1574,19 +1335,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1597,11 +1354,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1609,12 +1364,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1625,15 +1378,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1641,12 +1391,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1657,29 +1405,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1688,7 +1430,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1696,12 +1437,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1713,13 +1452,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1743,28 +1480,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1773,7 +1504,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1781,8 +1511,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1793,29 +1522,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1826,11 +1549,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1846,19 +1567,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1873,15 +1591,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1897,11 +1612,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -1916,15 +1629,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1939,16 +1650,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1963,7 +1671,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1990,29 +1697,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2021,7 +1722,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2029,12 +1729,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2045,12 +1743,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2074,32 +1770,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2108,7 +1797,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2116,8 +1804,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2128,29 +1815,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2159,7 +1840,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2167,12 +1847,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2183,12 +1861,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2212,28 +1888,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2242,7 +1912,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2250,8 +1919,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2262,11 +1930,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -2281,15 +1947,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2301,36 +1964,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2342,28 +1997,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2378,15 +2027,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2397,23 +2043,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2424,19 +2065,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2447,19 +2084,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2470,15 +2103,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2486,16 +2116,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2506,15 +2134,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2525,7 +2150,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2548,20 +2172,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2572,15 +2192,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2591,56 +2208,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2651,19 +2256,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2674,7 +2275,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2693,11 +2293,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2708,19 +2306,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2731,11 +2325,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2755,11 +2347,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2774,23 +2364,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2802,11 +2387,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2815,7 +2398,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2831,15 +2413,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2850,35 +2429,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2889,15 +2460,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -2913,16 +2481,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2933,7 +2498,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2952,15 +2516,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2971,15 +2532,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2990,11 +2548,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3003,7 +2559,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3019,7 +2574,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3027,16 +2581,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3047,11 +2598,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3060,7 +2609,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3076,20 +2624,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -3098,11 +2642,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3114,15 +2656,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3133,11 +2672,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3148,29 +2685,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3183,17 +2714,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -3213,11 +2741,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -3225,12 +2751,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -3241,16 +2765,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -3259,7 +2780,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -3267,24 +2787,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3293,7 +2808,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3301,21 +2815,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3323,20 +2833,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3344,49 +2850,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3395,7 +2891,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3404,7 +2899,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3420,17 +2914,14 @@ }, "kubernetes_core_PodTemplate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -3452,7 +2943,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3471,19 +2961,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3494,15 +2980,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3513,39 +2997,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3556,15 +3034,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3579,31 +3054,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3614,43 +3082,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3661,19 +3120,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3684,11 +3140,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3697,7 +3151,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3713,23 +3166,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3740,47 +3188,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3791,15 +3229,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3810,15 +3245,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3829,19 +3261,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3852,11 +3280,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3864,12 +3290,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3880,15 +3304,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3896,12 +3317,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3912,40 +3331,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3969,20 +3380,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3993,27 +3400,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4024,15 +3426,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4043,11 +3442,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -4062,28 +3459,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4094,23 +3485,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4121,19 +3508,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4144,7 +3527,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4220,7 +3602,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -4277,15 +3658,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4296,31 +3674,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4331,7 +3702,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4358,7 +3728,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4485,23 +3854,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4512,15 +3876,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4531,19 +3893,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/validation-schema.json index 4a269d664c9..ea2051caed2 100644 --- a/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-batch/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,17 +814,14 @@ }, "kubernetes_batch_CronJob": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CronJob", "required": true }, @@ -1006,17 +847,14 @@ }, "kubernetes_batch_CronJobList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_batch_CronJob", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.CronJob" @@ -1024,7 +862,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CronJobList", "required": true }, @@ -1042,36 +879,29 @@ }, "kubernetes_batch_CronJobSpec": { "type": "object", - "description": "", "properties": { "concurrencyPolicy": { - "type": "string", - "description": "" + "type": "string" }, "failedJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "jobTemplate": { "$ref": "#/definitions/kubernetes_batch_JobTemplateSpec", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.JobTemplateSpec" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "startingDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "successfulJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "suspend": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1082,11 +912,9 @@ }, "kubernetes_batch_CronJobStatus": { "type": "object", - "description": "", "properties": { "active": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -1106,17 +934,14 @@ }, "kubernetes_batch_Job": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Job", "required": true }, @@ -1142,7 +967,6 @@ }, "kubernetes_batch_JobCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1153,20 +977,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1177,17 +997,14 @@ }, "kubernetes_batch_JobList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_batch_Job", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.Job" @@ -1195,7 +1012,6 @@ }, "kind": { "type": "string", - "description": "", "default": "JobList", "required": true }, @@ -1213,28 +1029,22 @@ }, "kubernetes_batch_JobSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "backoffLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "completions": { - "type": "integer", - "description": "" + "type": "integer" }, "manualSelector": { - "type": "boolean", - "description": "" + "type": "boolean" }, "parallelism": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1245,8 +1055,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "ttlSecondsAfterFinished": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1257,11 +1066,9 @@ }, "kubernetes_batch_JobStatus": { "type": "object", - "description": "", "properties": { "active": { - "type": "integer", - "description": "" + "type": "integer" }, "completionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1269,7 +1076,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_batch_JobCondition", @@ -1277,16 +1083,14 @@ } }, "failed": { - "type": "integer", - "description": "" + "type": "integer" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "succeeded": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1297,7 +1101,6 @@ }, "kubernetes_batch_JobTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -1316,23 +1119,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1343,7 +1141,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1366,31 +1163,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1401,19 +1191,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1424,30 +1210,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1460,24 +1240,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1489,35 +1264,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1528,23 +1296,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1555,15 +1319,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1574,19 +1335,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1597,11 +1354,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1609,12 +1364,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1625,15 +1378,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1641,12 +1391,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1657,29 +1405,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1688,7 +1430,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1696,12 +1437,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1713,13 +1452,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1743,28 +1480,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1773,7 +1504,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1781,8 +1511,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1793,29 +1522,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1826,11 +1549,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1846,19 +1567,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1873,15 +1591,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1897,11 +1612,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -1916,15 +1629,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1939,16 +1650,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1963,7 +1671,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1990,29 +1697,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2021,7 +1722,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2029,12 +1729,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2045,12 +1743,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2074,32 +1770,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2108,7 +1797,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2116,8 +1804,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2128,29 +1815,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2159,7 +1840,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2167,12 +1847,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2183,12 +1861,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2212,28 +1888,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2242,7 +1912,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2250,8 +1919,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2262,11 +1930,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -2281,15 +1947,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2301,36 +1964,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2342,28 +1997,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2378,15 +2027,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2397,23 +2043,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2424,19 +2065,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2447,19 +2084,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2470,15 +2103,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2486,16 +2116,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2506,15 +2134,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2525,7 +2150,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2548,20 +2172,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2572,15 +2192,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2591,56 +2208,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2651,19 +2256,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2674,7 +2275,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2693,11 +2293,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2708,19 +2306,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2731,11 +2325,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2755,11 +2347,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2774,23 +2364,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2802,11 +2387,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2815,7 +2398,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2831,15 +2413,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2850,35 +2429,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2889,15 +2460,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -2913,16 +2481,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2933,7 +2498,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2952,15 +2516,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2971,15 +2532,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2990,11 +2548,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3003,7 +2559,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3019,7 +2574,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3027,16 +2581,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3047,11 +2598,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3060,7 +2609,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3076,20 +2624,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -3098,11 +2642,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3114,15 +2656,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3133,11 +2672,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3148,29 +2685,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3183,17 +2714,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -3213,11 +2741,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -3225,12 +2751,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -3241,16 +2765,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -3259,7 +2780,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -3267,24 +2787,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3293,7 +2808,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3301,21 +2815,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3323,20 +2833,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3344,49 +2850,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3395,7 +2891,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3404,7 +2899,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3420,17 +2914,14 @@ }, "kubernetes_core_PodTemplate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -3452,7 +2943,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3471,19 +2961,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3494,15 +2980,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3513,39 +2997,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3556,15 +3034,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3579,31 +3054,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3614,43 +3082,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3661,19 +3120,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3684,11 +3140,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3697,7 +3151,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3713,23 +3166,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3740,47 +3188,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3791,15 +3229,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3810,15 +3245,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3829,19 +3261,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3852,11 +3280,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3864,12 +3290,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3880,15 +3304,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3896,12 +3317,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3912,40 +3331,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3969,20 +3380,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3993,27 +3400,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4024,15 +3426,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4043,11 +3442,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -4062,28 +3459,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4094,23 +3485,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4121,19 +3508,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4144,7 +3527,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4220,7 +3602,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -4277,15 +3658,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4296,31 +3674,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4331,7 +3702,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4358,7 +3728,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4485,23 +3854,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4512,15 +3876,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4531,19 +3893,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4667,19 +4025,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -4687,7 +4042,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -4696,7 +4050,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -4709,13 +4062,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -4723,7 +4074,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -4733,20 +4083,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4754,28 +4100,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4783,16 +4123,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4801,20 +4138,16 @@ "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4824,31 +4157,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4856,20 +4183,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4877,12 +4201,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4890,16 +4212,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4908,7 +4227,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4916,12 +4234,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4929,12 +4245,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4942,12 +4256,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4956,25 +4268,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -4983,7 +4290,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -4991,12 +4297,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -5008,13 +4312,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -5038,28 +4340,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -5068,7 +4364,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -5076,8 +4371,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5085,26 +4379,21 @@ "containerport": { "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5113,26 +4402,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -5143,13 +4427,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CronJob", "required": true }, @@ -5172,13 +4454,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_batch_CronJob", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.CronJob" @@ -5186,7 +4466,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CronJobList", "required": true }, @@ -5200,33 +4479,27 @@ "cronjobspec": { "properties": { "concurrencyPolicy": { - "type": "string", - "description": "" + "type": "string" }, "failedJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "jobTemplate": { "$ref": "#/definitions/kubernetes_batch_JobTemplateSpec", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.JobTemplateSpec" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "startingDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "successfulJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "suspend": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5235,7 +4508,6 @@ "properties": { "active": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -5252,27 +4524,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -5283,41 +4550,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5326,7 +4586,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -5343,12 +4602,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -5360,12 +4617,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -5378,8 +4633,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -5395,8 +4649,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -5409,12 +4662,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -5448,25 +4699,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -5475,7 +4721,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -5483,12 +4728,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -5499,12 +4742,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -5528,32 +4769,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -5562,7 +4796,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -5570,8 +4803,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5580,25 +4812,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -5607,7 +4834,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -5615,12 +4841,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -5631,12 +4855,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -5660,28 +4882,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -5690,7 +4906,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -5698,8 +4913,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5707,8 +4921,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -5721,11 +4934,9 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5734,33 +4945,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5772,25 +4976,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -5802,12 +5001,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5815,20 +5012,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5837,19 +5030,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5857,16 +5047,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5874,16 +5061,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5891,12 +5075,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5922,16 +5104,13 @@ "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5939,12 +5118,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5952,12 +5129,10 @@ "httpgetaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -5965,16 +5140,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5982,12 +5155,10 @@ "httpheader": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5998,40 +5169,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6039,16 +5201,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -6057,53 +5216,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6112,13 +5260,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Job", "required": true }, @@ -6148,20 +5294,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6170,13 +5312,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "batch/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_batch_Job", "existingJavaType": "io.fabric8.kubernetes.api.model.batch.Job" @@ -6184,7 +5324,6 @@ }, "kind": { "type": "string", - "description": "", "default": "JobList", "required": true }, @@ -6199,24 +5338,19 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "backoffLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "completions": { - "type": "integer", - "description": "" + "type": "integer" }, "manualSelector": { - "type": "boolean", - "description": "" + "type": "boolean" }, "parallelism": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -6227,8 +5361,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "ttlSecondsAfterFinished": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -6236,8 +5369,7 @@ "jobstatus": { "properties": { "active": { - "type": "integer", - "description": "" + "type": "integer" }, "completionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6245,7 +5377,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_batch_JobCondition", @@ -6253,16 +5384,14 @@ } }, "failed": { - "type": "integer", - "description": "" + "type": "integer" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "succeeded": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -6283,16 +5412,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6301,7 +5427,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -6310,10 +5435,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -6323,20 +5446,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6359,13 +5478,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -6373,7 +5490,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -6387,21 +5503,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6409,54 +5521,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6464,8 +5565,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6473,24 +5573,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6502,16 +5598,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6520,7 +5613,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -6538,7 +5630,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -6550,20 +5641,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6573,7 +5660,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -6582,7 +5668,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -6595,12 +5680,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6609,16 +5692,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6626,7 +5706,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -6635,34 +5714,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -6670,18 +5742,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -6689,16 +5758,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6706,32 +5772,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6739,28 +5798,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6772,30 +5825,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -6806,11 +5853,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -6826,16 +5871,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6856,12 +5898,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6869,12 +5909,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6883,7 +5921,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -6892,7 +5929,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -6910,16 +5946,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6928,7 +5961,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -6937,7 +5969,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -6951,16 +5982,13 @@ "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -6969,11 +5997,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6982,12 +6008,10 @@ "poddnsconfigoption": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6995,8 +6019,7 @@ "podreadinessgate": { "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7005,25 +6028,20 @@ "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -7036,17 +6054,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -7064,7 +6079,6 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -7072,12 +6086,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -7088,16 +6100,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -7106,7 +6115,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -7114,24 +6122,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7140,7 +6143,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -7148,21 +6150,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -7170,20 +6168,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -7191,49 +6185,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -7242,7 +6226,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -7251,7 +6234,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -7265,13 +6247,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -7302,16 +6282,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7319,12 +6296,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7336,8 +6311,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -7349,32 +6323,27 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -7382,12 +6351,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -7399,8 +6366,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7408,28 +6374,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7440,40 +6400,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7481,16 +6433,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7499,7 +6449,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -7508,7 +6457,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -7522,10 +6470,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7534,44 +6480,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7579,12 +6516,10 @@ "seccompprofile": { "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7592,12 +6527,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7605,16 +6538,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7623,7 +6553,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7631,12 +6560,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7644,12 +6571,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7657,12 +6582,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7670,37 +6593,30 @@ "securitycontext": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -7721,20 +6637,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7742,12 +6654,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7755,17 +6665,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7774,13 +6681,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -7788,25 +6693,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7814,16 +6715,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7832,7 +6730,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -7840,24 +6737,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7865,24 +6757,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7890,12 +6778,10 @@ "sysctl": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7903,8 +6789,7 @@ "tcpsocketaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7916,8 +6801,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7925,25 +6809,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7955,16 +6834,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7972,16 +6848,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7989,12 +6862,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8003,26 +6874,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -8105,7 +6971,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -8159,12 +7024,10 @@ "volumedevice": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8172,28 +7035,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8343,20 +7200,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8368,8 +7221,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8377,16 +7229,13 @@ "windowssecuritycontextoptions": { "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/kube-schema.json index ed4f01e8cf5..c676d5e968e 100644 --- a/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,17 +746,14 @@ }, "kubernetes_certificates_CertificateSigningRequest": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "certificates.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CertificateSigningRequest", "required": true }, @@ -924,7 +778,6 @@ }, "kubernetes_certificates_CertificateSigningRequestCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -935,20 +788,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -959,17 +808,14 @@ }, "kubernetes_certificates_CertificateSigningRequestList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "certificates.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_certificates_CertificateSigningRequest", "existingJavaType": "io.fabric8.kubernetes.api.model.certificates.CertificateSigningRequest" @@ -977,7 +823,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CertificateSigningRequestList", "required": true }, @@ -995,54 +840,42 @@ }, "kubernetes_certificates_CertificateSigningRequestSpec": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "request": { - "type": "string", - "description": "" + "type": "string" }, "signerName": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "usages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1053,15 +886,12 @@ }, "kubernetes_certificates_CertificateSigningRequestStatus": { "type": "object", - "description": "", "properties": { "certificate": { - "type": "string", - "description": "" + "type": "string" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_certificates_CertificateSigningRequestCondition", diff --git a/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/validation-schema.json index 8dfe72e2615..a486cb63506 100644 --- a/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-certificates/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,17 +746,14 @@ }, "kubernetes_certificates_CertificateSigningRequest": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "certificates.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CertificateSigningRequest", "required": true }, @@ -924,7 +778,6 @@ }, "kubernetes_certificates_CertificateSigningRequestCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -935,20 +788,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -959,17 +808,14 @@ }, "kubernetes_certificates_CertificateSigningRequestList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "certificates.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_certificates_CertificateSigningRequest", "existingJavaType": "io.fabric8.kubernetes.api.model.certificates.CertificateSigningRequest" @@ -977,7 +823,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CertificateSigningRequestList", "required": true }, @@ -995,54 +840,42 @@ }, "kubernetes_certificates_CertificateSigningRequestSpec": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "request": { - "type": "string", - "description": "" + "type": "string" }, "signerName": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "usages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1053,15 +886,12 @@ }, "kubernetes_certificates_CertificateSigningRequestStatus": { "type": "object", - "description": "", "properties": { "certificate": { - "type": "string", - "description": "" + "type": "string" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_certificates_CertificateSigningRequestCondition", @@ -1173,19 +1003,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1193,7 +1020,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1202,7 +1028,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1215,13 +1040,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1229,7 +1052,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1240,13 +1062,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "certificates.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CertificateSigningRequest", "required": true }, @@ -1276,20 +1096,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1298,13 +1114,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "certificates.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_certificates_CertificateSigningRequest", "existingJavaType": "io.fabric8.kubernetes.api.model.certificates.CertificateSigningRequest" @@ -1312,7 +1126,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CertificateSigningRequestList", "required": true }, @@ -1327,50 +1140,39 @@ "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "request": { - "type": "string", - "description": "" + "type": "string" }, "signerName": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "usages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1378,12 +1180,10 @@ "certificatesigningrequeststatus": { "properties": { "certificate": { - "type": "string", - "description": "" + "type": "string" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_certificates_CertificateSigningRequestCondition", @@ -1397,26 +1197,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1427,41 +1222,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1473,19 +1261,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1493,12 +1278,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1509,40 +1292,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1551,13 +1325,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1565,7 +1337,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1579,21 +1350,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1601,54 +1368,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1656,24 +1412,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1686,16 +1438,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1703,7 +1452,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1712,34 +1460,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1747,18 +1488,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1766,16 +1504,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1783,28 +1518,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1816,30 +1545,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1849,12 +1572,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1862,8 +1583,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1875,10 +1595,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1887,12 +1605,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1901,13 +1617,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1915,25 +1629,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1941,16 +1651,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1959,7 +1666,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -1967,24 +1673,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1992,8 +1693,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2001,12 +1701,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2015,26 +1713,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/kube-schema.json index 3564af1dcde..3e8ea2b4471 100644 --- a/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,11 +339,9 @@ }, "kubernetes_apimachinery_MicroTime": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -414,20 +352,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -435,7 +369,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -444,34 +377,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -479,18 +405,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -498,16 +421,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -518,31 +438,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -553,7 +466,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -562,34 +474,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -602,15 +507,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -621,14 +523,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -640,15 +539,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -659,17 +555,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -677,25 +570,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -706,19 +595,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -729,11 +614,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -741,24 +624,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,11 +647,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -784,15 +660,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -803,30 +676,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -839,7 +706,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -848,7 +714,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -857,43 +722,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -904,17 +759,14 @@ }, "kubernetes_coordination_Lease": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "coordination.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Lease", "required": true }, @@ -936,17 +788,14 @@ }, "kubernetes_coordination_LeaseList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "coordination.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_coordination_Lease", "existingJavaType": "io.fabric8.kubernetes.api.model.coordination.v1.Lease" @@ -954,7 +803,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LeaseList", "required": true }, @@ -972,23 +820,19 @@ }, "kubernetes_coordination_LeaseSpec": { "type": "object", - "description": "", "properties": { "acquireTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", "existingJavaType": "io.fabric8.kubernetes.api.model.MicroTime" }, "holderIdentity": { - "type": "string", - "description": "" + "type": "string" }, "leaseDurationSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "leaseTransitions": { - "type": "integer", - "description": "" + "type": "integer" }, "renewTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", diff --git a/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/validation-schema.json index 744104570d0..bf38f1f202d 100644 --- a/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-coordination/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,11 +339,9 @@ }, "kubernetes_apimachinery_MicroTime": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -414,20 +352,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -435,7 +369,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -444,34 +377,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -479,18 +405,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -498,16 +421,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -518,31 +438,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -553,7 +466,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -562,34 +474,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -602,15 +507,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -621,14 +523,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -640,15 +539,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -659,17 +555,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -677,25 +570,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -706,19 +595,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -729,11 +614,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -741,24 +624,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,11 +647,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -784,15 +660,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -803,30 +676,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -839,7 +706,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -848,7 +714,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -857,43 +722,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -904,17 +759,14 @@ }, "kubernetes_coordination_Lease": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "coordination.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Lease", "required": true }, @@ -936,17 +788,14 @@ }, "kubernetes_coordination_LeaseList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "coordination.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_coordination_Lease", "existingJavaType": "io.fabric8.kubernetes.api.model.coordination.v1.Lease" @@ -954,7 +803,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LeaseList", "required": true }, @@ -972,23 +820,19 @@ }, "kubernetes_coordination_LeaseSpec": { "type": "object", - "description": "", "properties": { "acquireTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", "existingJavaType": "io.fabric8.kubernetes.api.model.MicroTime" }, "holderIdentity": { - "type": "string", - "description": "" + "type": "string" }, "leaseDurationSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "leaseTransitions": { - "type": "integer", - "description": "" + "type": "integer" }, "renewTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", @@ -1087,19 +931,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1107,7 +948,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1116,7 +956,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1129,13 +968,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1143,7 +980,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1154,26 +990,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1184,41 +1015,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1230,19 +1054,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1250,12 +1071,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1266,40 +1085,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1308,13 +1118,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "coordination.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Lease", "required": true }, @@ -1333,13 +1141,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "coordination.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_coordination_Lease", "existingJavaType": "io.fabric8.kubernetes.api.model.coordination.v1.Lease" @@ -1347,7 +1153,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LeaseList", "required": true }, @@ -1365,16 +1170,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.MicroTime" }, "holderIdentity": { - "type": "string", - "description": "" + "type": "string" }, "leaseDurationSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "leaseTransitions": { - "type": "integer", - "description": "" + "type": "integer" }, "renewTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", @@ -1387,13 +1189,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1401,7 +1201,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1415,21 +1214,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1437,54 +1232,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1492,24 +1276,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1521,8 +1301,7 @@ "microtime": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1531,16 +1310,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1548,7 +1324,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1557,34 +1332,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1592,18 +1360,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1611,16 +1376,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1628,28 +1390,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1661,30 +1417,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1694,12 +1444,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1707,8 +1455,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1720,10 +1467,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1732,12 +1477,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1746,13 +1489,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1760,25 +1501,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1786,16 +1523,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1804,7 +1538,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -1812,24 +1545,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1837,8 +1565,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1846,12 +1573,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1860,26 +1585,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/kube-schema.json index 9ec9a83f180..b1bc5072ff2 100644 --- a/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/kube-schema.json @@ -5,17 +5,14 @@ "definitions": { "kubernetes_aggregator_APIService": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIService", "required": true }, @@ -40,27 +37,22 @@ }, "kubernetes_aggregator_APIServiceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -71,17 +63,14 @@ }, "kubernetes_aggregator_APIServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_aggregator_APIService", "existingJavaType": "io.fabric8.kubernetes.api.model.APIService" @@ -89,7 +78,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIServiceList", "required": true }, @@ -107,35 +95,28 @@ }, "kubernetes_aggregator_APIServiceSpec": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "groupPriorityMinimum": { - "type": "integer", - "description": "" + "type": "integer" }, "insecureSkipTLSVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "service": { "$ref": "#/definitions/kubernetes_aggregator_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceReference" }, "version": { - "type": "string", - "description": "" + "type": "string" }, "versionPriority": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -146,11 +127,9 @@ }, "kubernetes_aggregator_APIServiceStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_aggregator_APIServiceCondition", @@ -166,19 +145,15 @@ }, "kubernetes_aggregator_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -189,23 +164,19 @@ }, "kubernetes_apimachinery_pkg_apis_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery", @@ -213,7 +184,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ServerAddressByClientCIDR", @@ -222,7 +192,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -237,17 +206,14 @@ }, "kubernetes_apimachinery_pkg_apis_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -255,7 +221,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -268,32 +233,26 @@ }, "kubernetes_apimachinery_pkg_apis_Condition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -304,30 +263,24 @@ }, "kubernetes_apimachinery_pkg_apis_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -340,45 +293,37 @@ }, "kubernetes_apimachinery_pkg_apis_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -389,7 +334,6 @@ }, "kubernetes_apimachinery_pkg_apis_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -398,23 +342,19 @@ }, "kubernetes_apimachinery_pkg_apis_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -425,15 +365,12 @@ }, "kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -444,19 +381,15 @@ }, "kubernetes_apimachinery_pkg_apis_GroupVersionKind": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -467,19 +400,15 @@ }, "kubernetes_apimachinery_pkg_apis_GroupVersionResource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -490,11 +419,9 @@ }, "kubernetes_apimachinery_pkg_apis_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_LabelSelectorRequirement", @@ -503,10 +430,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -519,23 +444,18 @@ }, "kubernetes_apimachinery_pkg_apis_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -547,17 +467,14 @@ }, "kubernetes_apimachinery_pkg_apis_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -565,7 +482,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -583,24 +499,19 @@ }, "kubernetes_apimachinery_pkg_apis_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -611,57 +522,45 @@ }, "kubernetes_apimachinery_pkg_apis_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -672,27 +571,22 @@ }, "kubernetes_apimachinery_pkg_apis_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -707,11 +601,9 @@ }, "kubernetes_apimachinery_pkg_apis_MicroTime": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -722,20 +614,16 @@ }, "kubernetes_apimachinery_pkg_apis_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -743,7 +631,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -752,34 +639,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ManagedFieldsEntry", @@ -787,18 +667,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_OwnerReference", @@ -806,16 +683,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,31 +700,24 @@ }, "kubernetes_apimachinery_pkg_apis_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -861,7 +728,6 @@ }, "kubernetes_apimachinery_pkg_apis_Patch": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -870,34 +736,27 @@ }, "kubernetes_apimachinery_pkg_apis_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -910,15 +769,12 @@ }, "kubernetes_apimachinery_pkg_apis_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -929,14 +785,11 @@ }, "kubernetes_apimachinery_pkg_apis_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -948,15 +801,12 @@ }, "kubernetes_apimachinery_pkg_apis_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -967,17 +817,14 @@ }, "kubernetes_apimachinery_pkg_apis_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_StatusDetails", @@ -985,25 +832,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1014,19 +857,15 @@ }, "kubernetes_apimachinery_pkg_apis_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1037,11 +876,9 @@ }, "kubernetes_apimachinery_pkg_apis_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_StatusCause", @@ -1049,24 +886,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1077,11 +909,9 @@ }, "kubernetes_apimachinery_pkg_apis_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1092,15 +922,12 @@ }, "kubernetes_apimachinery_pkg_apis_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1111,30 +938,24 @@ }, "kubernetes_apimachinery_pkg_apis_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -1147,7 +968,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -1156,7 +976,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -1165,19 +984,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1189,43 +1004,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1236,30 +1041,23 @@ }, "kubernetes_config_AuthInfo": { "type": "object", - "description": "", "properties": { "as": { - "type": "string", - "description": "" + "type": "string" }, "as-groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "as-user-extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -1269,20 +1067,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.AuthProviderConfig" }, "client-certificate": { - "type": "string", - "description": "" + "type": "string" }, "client-certificate-data": { - "type": "string", - "description": "" + "type": "string" }, "client-key": { - "type": "string", - "description": "" + "type": "string" }, "client-key-data": { - "type": "string", - "description": "" + "type": "string" }, "exec": { "$ref": "#/definitions/kubernetes_config_ExecConfig", @@ -1290,7 +1084,6 @@ }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1298,20 +1091,16 @@ } }, "password": { - "type": "string", - "description": "" + "type": "string" }, "token": { - "type": "string", - "description": "" + "type": "string" }, "tokenFile": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1322,20 +1111,16 @@ }, "kubernetes_config_AuthProviderConfig": { "type": "object", - "description": "", "properties": { "config": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1346,19 +1131,15 @@ }, "kubernetes_config_Cluster": { "type": "object", - "description": "", "properties": { "certificate-authority": { - "type": "string", - "description": "" + "type": "string" }, "certificate-authority-data": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1366,20 +1147,16 @@ } }, "insecure-skip-tls-verify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "proxy-url": { - "type": "string", - "description": "" + "type": "string" }, "server": { - "type": "string", - "description": "" + "type": "string" }, "tls-server-name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1390,15 +1167,12 @@ }, "kubernetes_config_Config": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "clusters": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedCluster", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedCluster" @@ -1406,19 +1180,16 @@ }, "contexts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedContext", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedContext" } }, "current-context": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1426,8 +1197,7 @@ } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "preferences": { "$ref": "#/definitions/kubernetes_config_Preferences", @@ -1435,7 +1205,6 @@ }, "users": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedAuthInfo", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedAuthInfo" @@ -1450,15 +1219,12 @@ }, "kubernetes_config_Context": { "type": "object", - "description": "", "properties": { "cluster": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1466,12 +1232,10 @@ } }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1482,35 +1246,28 @@ }, "kubernetes_config_ExecConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "args": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_ExecEnvVar", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecEnvVar" } }, "installHint": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1521,15 +1278,12 @@ }, "kubernetes_config_ExecEnvVar": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1540,11 +1294,9 @@ }, "kubernetes_config_NamedAuthInfo": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_config_AuthInfo", @@ -1559,15 +1311,13 @@ }, "kubernetes_config_NamedCluster": { "type": "object", - "description": "", "properties": { "cluster": { "$ref": "#/definitions/kubernetes_config_Cluster", "existingJavaType": "io.fabric8.kubernetes.api.model.Cluster" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1578,15 +1328,13 @@ }, "kubernetes_config_NamedContext": { "type": "object", - "description": "", "properties": { "context": { "$ref": "#/definitions/kubernetes_config_Context", "existingJavaType": "io.fabric8.kubernetes.api.model.Context" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1597,15 +1345,13 @@ }, "kubernetes_config_NamedExtension": { "type": "object", - "description": "", "properties": { "extension": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1616,15 +1362,12 @@ }, "kubernetes_config_Preferences": { "type": "object", - "description": "", "properties": { "colors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1640,23 +1383,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1667,7 +1405,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1690,15 +1427,12 @@ }, "kubernetes_core_AttachedVolume": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1709,31 +1443,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1744,23 +1471,18 @@ }, "kubernetes_core_AzureFilePersistentVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1771,19 +1493,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1794,17 +1512,14 @@ }, "kubernetes_core_Binding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Binding", "required": true }, @@ -1826,7 +1541,6 @@ }, "kubernetes_core_CSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1837,12 +1551,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1853,21 +1565,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1878,30 +1586,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1914,24 +1616,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1943,35 +1640,28 @@ }, "kubernetes_core_CephFSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1982,35 +1672,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2021,23 +1704,19 @@ }, "kubernetes_core_CinderPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2048,23 +1727,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2075,11 +1750,9 @@ }, "kubernetes_core_ClientIPConfig": { "type": "object", - "description": "", "properties": { "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2090,23 +1763,18 @@ }, "kubernetes_core_ComponentCondition": { "type": "object", - "description": "", "properties": { "error": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2117,17 +1785,14 @@ }, "kubernetes_core_ComponentStatus": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ComponentCondition", @@ -2136,7 +1801,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatus", "required": true }, @@ -2153,17 +1817,14 @@ }, "kubernetes_core_ComponentStatusList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ComponentStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.ComponentStatus" @@ -2171,7 +1832,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatusList", "required": true }, @@ -2189,39 +1849,31 @@ }, "kubernetes_core_ConfigMap": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "binaryData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ConfigMap", "required": true }, @@ -2239,15 +1891,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2258,19 +1907,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2281,17 +1926,14 @@ }, "kubernetes_core_ConfigMapList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ConfigMap", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMap" @@ -2299,7 +1941,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigMapList", "required": true }, @@ -2317,27 +1958,21 @@ }, "kubernetes_core_ConfigMapNodeConfigSource": { "type": "object", - "description": "", "properties": { "kubeletConfigKey": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2348,11 +1983,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2360,12 +1993,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2376,15 +2007,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2392,12 +2020,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2408,29 +2034,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2439,7 +2059,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2447,12 +2066,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2464,13 +2081,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2494,28 +2109,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2524,7 +2133,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2532,8 +2140,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2544,19 +2151,15 @@ }, "kubernetes_core_ContainerImage": { "type": "object", - "description": "", "properties": { "names": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "sizeBytes": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2568,29 +2171,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2601,7 +2198,6 @@ }, "kubernetes_core_ContainerState": { "type": "object", - "description": "", "properties": { "running": { "$ref": "#/definitions/kubernetes_core_ContainerStateRunning", @@ -2624,7 +2220,6 @@ }, "kubernetes_core_ContainerStateRunning": { "type": "object", - "description": "", "properties": { "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -2639,31 +2234,25 @@ }, "kubernetes_core_ContainerStateTerminated": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "exitCode": { - "type": "integer", - "description": "" + "type": "integer" }, "finishedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "signal": { - "type": "integer", - "description": "" + "type": "integer" }, "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -2678,15 +2267,12 @@ }, "kubernetes_core_ContainerStateWaiting": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2697,19 +2283,15 @@ }, "kubernetes_core_ContainerStatus": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "lastState": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -2717,21 +2299,17 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ready": { - "type": "boolean", - "description": "" + "type": "boolean" }, "restartCount": { - "type": "integer", - "description": "" + "type": "integer" }, "started": { - "type": "boolean", - "description": "" + "type": "boolean" }, "state": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -2746,11 +2324,9 @@ }, "kubernetes_core_DaemonEndpoint": { "type": "object", - "description": "", "properties": { "Port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2761,11 +2337,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2781,19 +2355,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -2808,15 +2379,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2832,11 +2400,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2851,19 +2417,15 @@ }, "kubernetes_core_EndpointAddress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -2878,25 +2440,20 @@ }, "kubernetes_core_EndpointPort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2907,11 +2464,9 @@ }, "kubernetes_core_EndpointSubset": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -2920,7 +2475,6 @@ }, "notReadyAddresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -2929,7 +2483,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointPort", @@ -2945,17 +2498,14 @@ }, "kubernetes_core_Endpoints": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Endpoints", "required": true }, @@ -2965,7 +2515,6 @@ }, "subsets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointSubset", @@ -2982,17 +2531,14 @@ }, "kubernetes_core_EndpointsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Endpoints", "existingJavaType": "io.fabric8.kubernetes.api.model.Endpoints" @@ -3000,7 +2546,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointsList", "required": true }, @@ -3018,15 +2563,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -3041,16 +2584,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -3065,7 +2605,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -3092,29 +2631,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3123,7 +2656,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3131,12 +2663,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3147,12 +2677,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3176,32 +2704,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3210,7 +2731,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3218,8 +2738,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3230,29 +2749,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3261,7 +2774,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3269,12 +2781,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3285,12 +2795,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3314,28 +2822,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3344,7 +2846,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3352,8 +2853,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3364,11 +2864,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -3383,21 +2881,17 @@ }, "kubernetes_core_Event": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "count": { - "type": "integer", - "description": "" + "type": "integer" }, "eventTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_MicroTime", @@ -3413,7 +2907,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Event", "required": true }, @@ -3422,28 +2915,24 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ObjectMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "related": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reportingComponent": { - "type": "string", - "description": "" + "type": "string" }, "reportingInstance": { - "type": "string", - "description": "" + "type": "string" }, "series": { "$ref": "#/definitions/kubernetes_core_EventSeries", @@ -3454,8 +2943,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.EventSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3467,17 +2955,14 @@ }, "kubernetes_core_EventList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Event", "existingJavaType": "io.fabric8.kubernetes.api.model.Event" @@ -3485,7 +2970,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventList", "required": true }, @@ -3503,11 +2987,9 @@ }, "kubernetes_core_EventSeries": { "type": "object", - "description": "", "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_MicroTime", @@ -3522,15 +3004,12 @@ }, "kubernetes_core_EventSource": { "type": "object", - "description": "", "properties": { "component": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3541,15 +3020,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3561,36 +3037,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3602,28 +3070,22 @@ }, "kubernetes_core_FlexPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -3638,28 +3100,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3674,15 +3130,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3693,23 +3146,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3720,19 +3168,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3743,23 +3187,18 @@ }, "kubernetes_core_GlusterfsPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3770,19 +3209,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3793,15 +3228,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -3809,16 +3241,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3829,15 +3259,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3848,7 +3275,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -3871,20 +3297,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3895,15 +3317,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3914,56 +3333,44 @@ }, "kubernetes_core_ISCSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3974,56 +3381,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4034,19 +3429,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4057,7 +3448,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -4076,17 +3466,14 @@ }, "kubernetes_core_LimitRange": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LimitRange", "required": true }, @@ -4108,11 +3495,9 @@ }, "kubernetes_core_LimitRangeItem": { "type": "object", - "description": "", "properties": { "default": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4121,7 +3506,6 @@ }, "defaultRequest": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4130,7 +3514,6 @@ }, "max": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4139,7 +3522,6 @@ }, "maxLimitRequestRatio": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4148,7 +3530,6 @@ }, "min": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4156,8 +3537,7 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4168,17 +3548,14 @@ }, "kubernetes_core_LimitRangeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRange", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRange" @@ -4186,7 +3563,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LimitRangeList", "required": true }, @@ -4204,11 +3580,9 @@ }, "kubernetes_core_LimitRangeSpec": { "type": "object", - "description": "", "properties": { "limits": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRangeItem", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRangeItem" @@ -4223,15 +3597,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4242,11 +3613,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -4262,11 +3631,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4277,15 +3644,12 @@ }, "kubernetes_core_LocalVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4296,19 +3660,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4319,17 +3679,14 @@ }, "kubernetes_core_Namespace": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Namespace", "required": true }, @@ -4354,27 +3711,22 @@ }, "kubernetes_core_NamespaceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4385,17 +3737,14 @@ }, "kubernetes_core_NamespaceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Namespace", "existingJavaType": "io.fabric8.kubernetes.api.model.Namespace" @@ -4403,7 +3752,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NamespaceList", "required": true }, @@ -4421,15 +3769,12 @@ }, "kubernetes_core_NamespaceSpec": { "type": "object", - "description": "", "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4441,11 +3786,9 @@ }, "kubernetes_core_NamespaceStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -4453,8 +3796,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4465,17 +3807,14 @@ }, "kubernetes_core_Node": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Node", "required": true }, @@ -4500,15 +3839,12 @@ }, "kubernetes_core_NodeAddress": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4519,11 +3855,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -4543,7 +3877,6 @@ }, "kubernetes_core_NodeCondition": { "type": "object", - "description": "", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -4554,20 +3887,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4578,7 +3907,6 @@ }, "kubernetes_core_NodeConfigSource": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapNodeConfigSource", @@ -4593,7 +3921,6 @@ }, "kubernetes_core_NodeConfigStatus": { "type": "object", - "description": "", "properties": { "active": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4604,8 +3931,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4620,7 +3946,6 @@ }, "kubernetes_core_NodeDaemonEndpoints": { "type": "object", - "description": "", "properties": { "kubeletEndpoint": { "$ref": "#/definitions/kubernetes_core_DaemonEndpoint", @@ -4635,17 +3960,14 @@ }, "kubernetes_core_NodeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Node", "existingJavaType": "io.fabric8.kubernetes.api.model.Node" @@ -4653,7 +3975,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeList", "required": true }, @@ -4671,11 +3992,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -4690,23 +4009,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4718,11 +4032,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4731,7 +4043,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4747,36 +4058,29 @@ }, "kubernetes_core_NodeSpec": { "type": "object", - "description": "", "properties": { "configSource": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "podCIDR": { - "type": "string", - "description": "" + "type": "string" }, "podCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "providerID": { - "type": "string", - "description": "" + "type": "string" }, "taints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Taint", @@ -4784,8 +4088,7 @@ } }, "unschedulable": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4796,11 +4099,9 @@ }, "kubernetes_core_NodeStatus": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeAddress", @@ -4809,7 +4110,6 @@ }, "allocatable": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4818,7 +4118,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4827,7 +4126,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeCondition", @@ -4844,7 +4142,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerImage", @@ -4856,12 +4153,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSystemInfo" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "volumesAttached": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_AttachedVolume", @@ -4870,11 +4165,9 @@ }, "volumesInUse": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4886,47 +4179,36 @@ }, "kubernetes_core_NodeSystemInfo": { "type": "object", - "description": "", "properties": { "architecture": { - "type": "string", - "description": "" + "type": "string" }, "bootID": { - "type": "string", - "description": "" + "type": "string" }, "containerRuntimeVersion": { - "type": "string", - "description": "" + "type": "string" }, "kernelVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeProxyVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeletVersion": { - "type": "string", - "description": "" + "type": "string" }, "machineID": { - "type": "string", - "description": "" + "type": "string" }, "operatingSystem": { - "type": "string", - "description": "" + "type": "string" }, "osImage": { - "type": "string", - "description": "" + "type": "string" }, "systemUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4937,15 +4219,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4956,35 +4235,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4995,17 +4266,14 @@ }, "kubernetes_core_PersistentVolume": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolume", "required": true }, @@ -5030,17 +4298,14 @@ }, "kubernetes_core_PersistentVolumeClaim": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaim", "required": true }, @@ -5066,7 +4331,6 @@ }, "kubernetes_core_PersistentVolumeClaimCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -5077,20 +4341,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5101,17 +4361,14 @@ }, "kubernetes_core_PersistentVolumeClaimList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim" @@ -5119,7 +4376,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaimList", "required": true }, @@ -5137,15 +4393,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -5161,16 +4414,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5181,20 +4431,16 @@ }, "kubernetes_core_PersistentVolumeClaimStatus": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -5203,7 +4449,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -5211,8 +4456,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5223,7 +4467,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ObjectMeta", @@ -5242,15 +4485,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -5261,17 +4501,14 @@ }, "kubernetes_core_PersistentVolumeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolume", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolume" @@ -5279,7 +4516,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeList", "required": true }, @@ -5297,7 +4533,6 @@ }, "kubernetes_core_PersistentVolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -5396,15 +4631,12 @@ }, "kubernetes_core_PersistentVolumeSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -5421,7 +4653,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -5478,11 +4709,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -5494,8 +4723,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -5518,16 +4746,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -5542,19 +4768,15 @@ }, "kubernetes_core_PersistentVolumeStatus": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5565,15 +4787,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5584,17 +4803,14 @@ }, "kubernetes_core_Pod": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pod", "required": true }, @@ -5620,11 +4836,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5633,7 +4847,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5649,7 +4862,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_LabelSelector", @@ -5657,16 +4869,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5677,11 +4886,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5690,7 +4897,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5706,7 +4912,6 @@ }, "kubernetes_core_PodCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -5717,20 +4922,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5741,20 +4942,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -5763,11 +4960,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5779,15 +4974,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5798,47 +4990,37 @@ }, "kubernetes_core_PodExecOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "command": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "container": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "PodExecOptions", "required": true }, "stderr": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdout": { - "type": "boolean", - "description": "" + "type": "boolean" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -5849,11 +5031,9 @@ }, "kubernetes_core_PodIP": { "type": "object", - "description": "", "properties": { "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5864,17 +5044,14 @@ }, "kubernetes_core_PodList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Pod", "existingJavaType": "io.fabric8.kubernetes.api.model.Pod" @@ -5882,7 +5059,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodList", "required": true }, @@ -5900,11 +5076,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5915,29 +5089,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -5950,17 +5118,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -5980,11 +5145,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -5992,12 +5155,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -6008,16 +5169,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -6026,7 +5184,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -6034,24 +5191,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6060,7 +5212,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -6068,21 +5219,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6090,20 +5237,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -6111,49 +5254,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -6162,7 +5295,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -6171,7 +5303,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -6187,11 +5318,9 @@ }, "kubernetes_core_PodStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodCondition", @@ -6200,7 +5329,6 @@ }, "containerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6209,7 +5337,6 @@ }, "ephemeralContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6217,12 +5344,10 @@ } }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "initContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6230,24 +5355,19 @@ } }, "message": { - "type": "string", - "description": "" + "type": "string" }, "nominatedNodeName": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "podIP": { - "type": "string", - "description": "" + "type": "string" }, "podIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodIP", @@ -6255,12 +5375,10 @@ } }, "qosClass": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -6275,17 +5393,14 @@ }, "kubernetes_core_PodTemplate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -6307,17 +5422,14 @@ }, "kubernetes_core_PodTemplateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PodTemplate", "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplate" @@ -6325,7 +5437,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodTemplateList", "required": true }, @@ -6343,7 +5454,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ObjectMeta", @@ -6362,19 +5472,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6385,15 +5491,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6404,39 +5508,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6447,15 +5545,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -6470,31 +5565,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6505,43 +5593,34 @@ }, "kubernetes_core_RBDPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6552,43 +5631,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6599,17 +5669,14 @@ }, "kubernetes_core_ReplicationController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicationController", "required": true }, @@ -6635,27 +5702,22 @@ }, "kubernetes_core_ReplicationControllerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6666,17 +5728,14 @@ }, "kubernetes_core_ReplicationControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ReplicationController", "existingJavaType": "io.fabric8.kubernetes.api.model.ReplicationController" @@ -6684,7 +5743,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicationControllerList", "required": true }, @@ -6702,22 +5760,17 @@ }, "kubernetes_core_ReplicationControllerSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6734,15 +5787,12 @@ }, "kubernetes_core_ReplicationControllerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ReplicationControllerCondition", @@ -6750,21 +5800,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6775,19 +5821,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6798,17 +5841,14 @@ }, "kubernetes_core_ResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ResourceQuota", "required": true }, @@ -6834,17 +5874,14 @@ }, "kubernetes_core_ResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ResourceQuota", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceQuota" @@ -6852,7 +5889,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ResourceQuotaList", "required": true }, @@ -6870,11 +5906,9 @@ }, "kubernetes_core_ResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6887,11 +5921,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6903,11 +5935,9 @@ }, "kubernetes_core_ResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6916,7 +5946,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6932,11 +5961,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6945,7 +5972,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6961,23 +5987,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6988,47 +6009,37 @@ }, "kubernetes_core_ScaleIOPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7039,47 +6050,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7090,11 +6091,9 @@ }, "kubernetes_core_ScopeSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -7110,23 +6109,18 @@ }, "kubernetes_core_ScopedResourceSelectorRequirement": { "type": "object", - "description": "", "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7138,15 +6132,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7157,30 +6148,24 @@ }, "kubernetes_core_Secret": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "Secret", "required": true }, @@ -7190,16 +6175,13 @@ }, "stringData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7211,15 +6193,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7230,19 +6209,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7253,17 +6228,14 @@ }, "kubernetes_core_SecretList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Secret", "existingJavaType": "io.fabric8.kubernetes.api.model.Secret" @@ -7271,7 +6243,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecretList", "required": true }, @@ -7289,11 +6260,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7301,12 +6270,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7317,15 +6284,12 @@ }, "kubernetes_core_SecretReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7336,15 +6300,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7352,12 +6313,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7368,40 +6327,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -7425,17 +6376,14 @@ }, "kubernetes_core_Service": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -7461,21 +6409,17 @@ }, "kubernetes_core_ServiceAccount": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7484,7 +6428,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccount", "required": true }, @@ -7494,7 +6437,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -7511,17 +6453,14 @@ }, "kubernetes_core_ServiceAccountList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ServiceAccount", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceAccount" @@ -7529,7 +6468,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccountList", "required": true }, @@ -7547,20 +6485,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7571,17 +6505,14 @@ }, "kubernetes_core_ServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Service", "existingJavaType": "io.fabric8.kubernetes.api.model.Service" @@ -7589,7 +6520,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, @@ -7607,29 +6537,23 @@ }, "kubernetes_core_ServicePort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "nodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7644,53 +6568,41 @@ }, "kubernetes_core_ServiceSpec": { "type": "object", - "description": "", "properties": { "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "externalIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "externalTrafficPolicy": { - "type": "string", - "description": "" + "type": "string" }, "healthCheckNodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "ipFamily": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerIP": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerSourceRanges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ServicePort", @@ -7698,21 +6610,17 @@ } }, "publishNotReadyAddresses": { - "type": "boolean", - "description": "" + "type": "boolean" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "sessionAffinity": { - "type": "string", - "description": "" + "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/kubernetes_core_SessionAffinityConfig", @@ -7720,16 +6628,13 @@ }, "topologyKeys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7740,7 +6645,6 @@ }, "kubernetes_core_ServiceStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -7755,7 +6659,6 @@ }, "kubernetes_core_SessionAffinityConfig": { "type": "object", - "description": "", "properties": { "clientIP": { "$ref": "#/definitions/kubernetes_core_ClientIPConfig", @@ -7770,27 +6673,22 @@ }, "kubernetes_core_StorageOSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7801,27 +6699,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7832,15 +6725,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7851,11 +6741,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7870,23 +6758,19 @@ }, "kubernetes_core_Taint": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "timeAdded": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7897,28 +6781,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7929,18 +6807,14 @@ }, "kubernetes_core_TopologySelectorLabelRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7952,11 +6826,9 @@ }, "kubernetes_core_TopologySelectorTerm": { "type": "object", - "description": "", "properties": { "matchLabelExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorLabelRequirement", @@ -7972,23 +6844,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7999,19 +6867,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8022,7 +6886,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8098,7 +6961,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -8155,15 +7017,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8174,31 +7033,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8209,7 +7061,6 @@ }, "kubernetes_core_VolumeNodeAffinity": { "type": "object", - "description": "", "properties": { "required": { "$ref": "#/definitions/kubernetes_core_NodeSelector", @@ -8224,7 +7075,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -8251,7 +7101,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8378,23 +7227,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8405,15 +7249,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -8424,19 +7266,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8447,11 +7285,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8462,7 +7298,6 @@ }, "kubernetes_watch_WatchEvent": { "type": "object", - "description": "", "properties": { "object": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", diff --git a/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/validation-schema.json index d48f8ee2ac0..e8787a8c986 100644 --- a/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-core/src/main/resources/schema/validation-schema.json @@ -5,17 +5,14 @@ "definitions": { "kubernetes_aggregator_APIService": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIService", "required": true }, @@ -40,27 +37,22 @@ }, "kubernetes_aggregator_APIServiceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -71,17 +63,14 @@ }, "kubernetes_aggregator_APIServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_aggregator_APIService", "existingJavaType": "io.fabric8.kubernetes.api.model.APIService" @@ -89,7 +78,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIServiceList", "required": true }, @@ -107,35 +95,28 @@ }, "kubernetes_aggregator_APIServiceSpec": { "type": "object", - "description": "", "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "groupPriorityMinimum": { - "type": "integer", - "description": "" + "type": "integer" }, "insecureSkipTLSVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "service": { "$ref": "#/definitions/kubernetes_aggregator_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceReference" }, "version": { - "type": "string", - "description": "" + "type": "string" }, "versionPriority": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -146,11 +127,9 @@ }, "kubernetes_aggregator_APIServiceStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_aggregator_APIServiceCondition", @@ -166,19 +145,15 @@ }, "kubernetes_aggregator_ServiceReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -189,23 +164,19 @@ }, "kubernetes_apimachinery_pkg_apis_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery", @@ -213,7 +184,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ServerAddressByClientCIDR", @@ -222,7 +192,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -237,17 +206,14 @@ }, "kubernetes_apimachinery_pkg_apis_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -255,7 +221,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -268,32 +233,26 @@ }, "kubernetes_apimachinery_pkg_apis_Condition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -304,30 +263,24 @@ }, "kubernetes_apimachinery_pkg_apis_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -340,45 +293,37 @@ }, "kubernetes_apimachinery_pkg_apis_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -389,7 +334,6 @@ }, "kubernetes_apimachinery_pkg_apis_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -398,23 +342,19 @@ }, "kubernetes_apimachinery_pkg_apis_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -425,15 +365,12 @@ }, "kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -444,19 +381,15 @@ }, "kubernetes_apimachinery_pkg_apis_GroupVersionKind": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -467,19 +400,15 @@ }, "kubernetes_apimachinery_pkg_apis_GroupVersionResource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -490,11 +419,9 @@ }, "kubernetes_apimachinery_pkg_apis_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_LabelSelectorRequirement", @@ -503,10 +430,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -519,23 +444,18 @@ }, "kubernetes_apimachinery_pkg_apis_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -547,17 +467,14 @@ }, "kubernetes_apimachinery_pkg_apis_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -565,7 +482,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -583,24 +499,19 @@ }, "kubernetes_apimachinery_pkg_apis_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -611,57 +522,45 @@ }, "kubernetes_apimachinery_pkg_apis_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -672,27 +571,22 @@ }, "kubernetes_apimachinery_pkg_apis_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -707,11 +601,9 @@ }, "kubernetes_apimachinery_pkg_apis_MicroTime": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -722,20 +614,16 @@ }, "kubernetes_apimachinery_pkg_apis_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -743,7 +631,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -752,34 +639,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ManagedFieldsEntry", @@ -787,18 +667,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_OwnerReference", @@ -806,16 +683,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,31 +700,24 @@ }, "kubernetes_apimachinery_pkg_apis_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -861,7 +728,6 @@ }, "kubernetes_apimachinery_pkg_apis_Patch": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -870,34 +736,27 @@ }, "kubernetes_apimachinery_pkg_apis_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -910,15 +769,12 @@ }, "kubernetes_apimachinery_pkg_apis_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -929,14 +785,11 @@ }, "kubernetes_apimachinery_pkg_apis_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -948,15 +801,12 @@ }, "kubernetes_apimachinery_pkg_apis_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -967,17 +817,14 @@ }, "kubernetes_apimachinery_pkg_apis_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_StatusDetails", @@ -985,25 +832,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1014,19 +857,15 @@ }, "kubernetes_apimachinery_pkg_apis_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1037,11 +876,9 @@ }, "kubernetes_apimachinery_pkg_apis_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_StatusCause", @@ -1049,24 +886,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1077,11 +909,9 @@ }, "kubernetes_apimachinery_pkg_apis_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1092,15 +922,12 @@ }, "kubernetes_apimachinery_pkg_apis_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1111,30 +938,24 @@ }, "kubernetes_apimachinery_pkg_apis_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -1147,7 +968,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -1156,7 +976,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -1165,19 +984,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1189,43 +1004,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1236,30 +1041,23 @@ }, "kubernetes_config_AuthInfo": { "type": "object", - "description": "", "properties": { "as": { - "type": "string", - "description": "" + "type": "string" }, "as-groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "as-user-extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -1269,20 +1067,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.AuthProviderConfig" }, "client-certificate": { - "type": "string", - "description": "" + "type": "string" }, "client-certificate-data": { - "type": "string", - "description": "" + "type": "string" }, "client-key": { - "type": "string", - "description": "" + "type": "string" }, "client-key-data": { - "type": "string", - "description": "" + "type": "string" }, "exec": { "$ref": "#/definitions/kubernetes_config_ExecConfig", @@ -1290,7 +1084,6 @@ }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1298,20 +1091,16 @@ } }, "password": { - "type": "string", - "description": "" + "type": "string" }, "token": { - "type": "string", - "description": "" + "type": "string" }, "tokenFile": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1322,20 +1111,16 @@ }, "kubernetes_config_AuthProviderConfig": { "type": "object", - "description": "", "properties": { "config": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1346,19 +1131,15 @@ }, "kubernetes_config_Cluster": { "type": "object", - "description": "", "properties": { "certificate-authority": { - "type": "string", - "description": "" + "type": "string" }, "certificate-authority-data": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1366,20 +1147,16 @@ } }, "insecure-skip-tls-verify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "proxy-url": { - "type": "string", - "description": "" + "type": "string" }, "server": { - "type": "string", - "description": "" + "type": "string" }, "tls-server-name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1390,15 +1167,12 @@ }, "kubernetes_config_Config": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "clusters": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedCluster", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedCluster" @@ -1406,19 +1180,16 @@ }, "contexts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedContext", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedContext" } }, "current-context": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1426,8 +1197,7 @@ } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "preferences": { "$ref": "#/definitions/kubernetes_config_Preferences", @@ -1435,7 +1205,6 @@ }, "users": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedAuthInfo", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedAuthInfo" @@ -1450,15 +1219,12 @@ }, "kubernetes_config_Context": { "type": "object", - "description": "", "properties": { "cluster": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1466,12 +1232,10 @@ } }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1482,35 +1246,28 @@ }, "kubernetes_config_ExecConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "args": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_ExecEnvVar", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecEnvVar" } }, "installHint": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1521,15 +1278,12 @@ }, "kubernetes_config_ExecEnvVar": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1540,11 +1294,9 @@ }, "kubernetes_config_NamedAuthInfo": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_config_AuthInfo", @@ -1559,15 +1311,13 @@ }, "kubernetes_config_NamedCluster": { "type": "object", - "description": "", "properties": { "cluster": { "$ref": "#/definitions/kubernetes_config_Cluster", "existingJavaType": "io.fabric8.kubernetes.api.model.Cluster" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1578,15 +1328,13 @@ }, "kubernetes_config_NamedContext": { "type": "object", - "description": "", "properties": { "context": { "$ref": "#/definitions/kubernetes_config_Context", "existingJavaType": "io.fabric8.kubernetes.api.model.Context" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1597,15 +1345,13 @@ }, "kubernetes_config_NamedExtension": { "type": "object", - "description": "", "properties": { "extension": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1616,15 +1362,12 @@ }, "kubernetes_config_Preferences": { "type": "object", - "description": "", "properties": { "colors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1640,23 +1383,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1667,7 +1405,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1690,15 +1427,12 @@ }, "kubernetes_core_AttachedVolume": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1709,31 +1443,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1744,23 +1471,18 @@ }, "kubernetes_core_AzureFilePersistentVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1771,19 +1493,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1794,17 +1512,14 @@ }, "kubernetes_core_Binding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Binding", "required": true }, @@ -1826,7 +1541,6 @@ }, "kubernetes_core_CSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1837,12 +1551,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1853,21 +1565,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1878,30 +1586,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1914,24 +1616,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1943,35 +1640,28 @@ }, "kubernetes_core_CephFSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1982,35 +1672,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2021,23 +1704,19 @@ }, "kubernetes_core_CinderPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2048,23 +1727,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2075,11 +1750,9 @@ }, "kubernetes_core_ClientIPConfig": { "type": "object", - "description": "", "properties": { "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2090,23 +1763,18 @@ }, "kubernetes_core_ComponentCondition": { "type": "object", - "description": "", "properties": { "error": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2117,17 +1785,14 @@ }, "kubernetes_core_ComponentStatus": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ComponentCondition", @@ -2136,7 +1801,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatus", "required": true }, @@ -2153,17 +1817,14 @@ }, "kubernetes_core_ComponentStatusList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ComponentStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.ComponentStatus" @@ -2171,7 +1832,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatusList", "required": true }, @@ -2189,39 +1849,31 @@ }, "kubernetes_core_ConfigMap": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "binaryData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ConfigMap", "required": true }, @@ -2239,15 +1891,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2258,19 +1907,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2281,17 +1926,14 @@ }, "kubernetes_core_ConfigMapList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ConfigMap", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMap" @@ -2299,7 +1941,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigMapList", "required": true }, @@ -2317,27 +1958,21 @@ }, "kubernetes_core_ConfigMapNodeConfigSource": { "type": "object", - "description": "", "properties": { "kubeletConfigKey": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2348,11 +1983,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2360,12 +1993,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2376,15 +2007,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2392,12 +2020,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2408,29 +2034,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2439,7 +2059,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2447,12 +2066,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2464,13 +2081,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2494,28 +2109,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2524,7 +2133,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2532,8 +2140,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2544,19 +2151,15 @@ }, "kubernetes_core_ContainerImage": { "type": "object", - "description": "", "properties": { "names": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "sizeBytes": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2568,29 +2171,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2601,7 +2198,6 @@ }, "kubernetes_core_ContainerState": { "type": "object", - "description": "", "properties": { "running": { "$ref": "#/definitions/kubernetes_core_ContainerStateRunning", @@ -2624,7 +2220,6 @@ }, "kubernetes_core_ContainerStateRunning": { "type": "object", - "description": "", "properties": { "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -2639,31 +2234,25 @@ }, "kubernetes_core_ContainerStateTerminated": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "exitCode": { - "type": "integer", - "description": "" + "type": "integer" }, "finishedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "signal": { - "type": "integer", - "description": "" + "type": "integer" }, "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -2678,15 +2267,12 @@ }, "kubernetes_core_ContainerStateWaiting": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2697,19 +2283,15 @@ }, "kubernetes_core_ContainerStatus": { "type": "object", - "description": "", "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "lastState": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -2717,21 +2299,17 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ready": { - "type": "boolean", - "description": "" + "type": "boolean" }, "restartCount": { - "type": "integer", - "description": "" + "type": "integer" }, "started": { - "type": "boolean", - "description": "" + "type": "boolean" }, "state": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -2746,11 +2324,9 @@ }, "kubernetes_core_DaemonEndpoint": { "type": "object", - "description": "", "properties": { "Port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2761,11 +2337,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2781,19 +2355,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -2808,15 +2379,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2832,11 +2400,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2851,19 +2417,15 @@ }, "kubernetes_core_EndpointAddress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -2878,25 +2440,20 @@ }, "kubernetes_core_EndpointPort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2907,11 +2464,9 @@ }, "kubernetes_core_EndpointSubset": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -2920,7 +2475,6 @@ }, "notReadyAddresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -2929,7 +2483,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointPort", @@ -2945,17 +2498,14 @@ }, "kubernetes_core_Endpoints": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Endpoints", "required": true }, @@ -2965,7 +2515,6 @@ }, "subsets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointSubset", @@ -2982,17 +2531,14 @@ }, "kubernetes_core_EndpointsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Endpoints", "existingJavaType": "io.fabric8.kubernetes.api.model.Endpoints" @@ -3000,7 +2546,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointsList", "required": true }, @@ -3018,15 +2563,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -3041,16 +2584,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -3065,7 +2605,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -3092,29 +2631,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3123,7 +2656,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3131,12 +2663,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3147,12 +2677,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3176,32 +2704,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3210,7 +2731,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3218,8 +2738,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3230,29 +2749,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -3261,7 +2774,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -3269,12 +2781,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -3285,12 +2795,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -3314,28 +2822,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -3344,7 +2846,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3352,8 +2853,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3364,11 +2864,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -3383,21 +2881,17 @@ }, "kubernetes_core_Event": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "count": { - "type": "integer", - "description": "" + "type": "integer" }, "eventTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_MicroTime", @@ -3413,7 +2907,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Event", "required": true }, @@ -3422,28 +2915,24 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ObjectMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "related": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reportingComponent": { - "type": "string", - "description": "" + "type": "string" }, "reportingInstance": { - "type": "string", - "description": "" + "type": "string" }, "series": { "$ref": "#/definitions/kubernetes_core_EventSeries", @@ -3454,8 +2943,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.EventSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3467,17 +2955,14 @@ }, "kubernetes_core_EventList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Event", "existingJavaType": "io.fabric8.kubernetes.api.model.Event" @@ -3485,7 +2970,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventList", "required": true }, @@ -3503,11 +2987,9 @@ }, "kubernetes_core_EventSeries": { "type": "object", - "description": "", "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_MicroTime", @@ -3522,15 +3004,12 @@ }, "kubernetes_core_EventSource": { "type": "object", - "description": "", "properties": { "component": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3541,15 +3020,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3561,36 +3037,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3602,28 +3070,22 @@ }, "kubernetes_core_FlexPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -3638,28 +3100,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3674,15 +3130,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3693,23 +3146,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3720,19 +3168,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3743,23 +3187,18 @@ }, "kubernetes_core_GlusterfsPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3770,19 +3209,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3793,15 +3228,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -3809,16 +3241,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3829,15 +3259,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3848,7 +3275,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -3871,20 +3297,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3895,15 +3317,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3914,56 +3333,44 @@ }, "kubernetes_core_ISCSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3974,56 +3381,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4034,19 +3429,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4057,7 +3448,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -4076,17 +3466,14 @@ }, "kubernetes_core_LimitRange": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LimitRange", "required": true }, @@ -4108,11 +3495,9 @@ }, "kubernetes_core_LimitRangeItem": { "type": "object", - "description": "", "properties": { "default": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4121,7 +3506,6 @@ }, "defaultRequest": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4130,7 +3514,6 @@ }, "max": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4139,7 +3522,6 @@ }, "maxLimitRequestRatio": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4148,7 +3530,6 @@ }, "min": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4156,8 +3537,7 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4168,17 +3548,14 @@ }, "kubernetes_core_LimitRangeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRange", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRange" @@ -4186,7 +3563,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LimitRangeList", "required": true }, @@ -4204,11 +3580,9 @@ }, "kubernetes_core_LimitRangeSpec": { "type": "object", - "description": "", "properties": { "limits": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRangeItem", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRangeItem" @@ -4223,15 +3597,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4242,11 +3613,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -4262,11 +3631,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4277,15 +3644,12 @@ }, "kubernetes_core_LocalVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4296,19 +3660,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4319,17 +3679,14 @@ }, "kubernetes_core_Namespace": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Namespace", "required": true }, @@ -4354,27 +3711,22 @@ }, "kubernetes_core_NamespaceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4385,17 +3737,14 @@ }, "kubernetes_core_NamespaceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Namespace", "existingJavaType": "io.fabric8.kubernetes.api.model.Namespace" @@ -4403,7 +3752,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NamespaceList", "required": true }, @@ -4421,15 +3769,12 @@ }, "kubernetes_core_NamespaceSpec": { "type": "object", - "description": "", "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4441,11 +3786,9 @@ }, "kubernetes_core_NamespaceStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -4453,8 +3796,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4465,17 +3807,14 @@ }, "kubernetes_core_Node": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Node", "required": true }, @@ -4500,15 +3839,12 @@ }, "kubernetes_core_NodeAddress": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4519,11 +3855,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -4543,7 +3877,6 @@ }, "kubernetes_core_NodeCondition": { "type": "object", - "description": "", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -4554,20 +3887,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4578,7 +3907,6 @@ }, "kubernetes_core_NodeConfigSource": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapNodeConfigSource", @@ -4593,7 +3921,6 @@ }, "kubernetes_core_NodeConfigStatus": { "type": "object", - "description": "", "properties": { "active": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4604,8 +3931,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -4620,7 +3946,6 @@ }, "kubernetes_core_NodeDaemonEndpoints": { "type": "object", - "description": "", "properties": { "kubeletEndpoint": { "$ref": "#/definitions/kubernetes_core_DaemonEndpoint", @@ -4635,17 +3960,14 @@ }, "kubernetes_core_NodeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Node", "existingJavaType": "io.fabric8.kubernetes.api.model.Node" @@ -4653,7 +3975,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeList", "required": true }, @@ -4671,11 +3992,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -4690,23 +4009,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4718,11 +4032,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4731,7 +4043,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -4747,36 +4058,29 @@ }, "kubernetes_core_NodeSpec": { "type": "object", - "description": "", "properties": { "configSource": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "podCIDR": { - "type": "string", - "description": "" + "type": "string" }, "podCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "providerID": { - "type": "string", - "description": "" + "type": "string" }, "taints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Taint", @@ -4784,8 +4088,7 @@ } }, "unschedulable": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4796,11 +4099,9 @@ }, "kubernetes_core_NodeStatus": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeAddress", @@ -4809,7 +4110,6 @@ }, "allocatable": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4818,7 +4118,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -4827,7 +4126,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeCondition", @@ -4844,7 +4142,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerImage", @@ -4856,12 +4153,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSystemInfo" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "volumesAttached": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_AttachedVolume", @@ -4870,11 +4165,9 @@ }, "volumesInUse": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4886,47 +4179,36 @@ }, "kubernetes_core_NodeSystemInfo": { "type": "object", - "description": "", "properties": { "architecture": { - "type": "string", - "description": "" + "type": "string" }, "bootID": { - "type": "string", - "description": "" + "type": "string" }, "containerRuntimeVersion": { - "type": "string", - "description": "" + "type": "string" }, "kernelVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeProxyVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeletVersion": { - "type": "string", - "description": "" + "type": "string" }, "machineID": { - "type": "string", - "description": "" + "type": "string" }, "operatingSystem": { - "type": "string", - "description": "" + "type": "string" }, "osImage": { - "type": "string", - "description": "" + "type": "string" }, "systemUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4937,15 +4219,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4956,35 +4235,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4995,17 +4266,14 @@ }, "kubernetes_core_PersistentVolume": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolume", "required": true }, @@ -5030,17 +4298,14 @@ }, "kubernetes_core_PersistentVolumeClaim": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaim", "required": true }, @@ -5066,7 +4331,6 @@ }, "kubernetes_core_PersistentVolumeClaimCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -5077,20 +4341,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5101,17 +4361,14 @@ }, "kubernetes_core_PersistentVolumeClaimList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim" @@ -5119,7 +4376,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaimList", "required": true }, @@ -5137,15 +4393,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -5161,16 +4414,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5181,20 +4431,16 @@ }, "kubernetes_core_PersistentVolumeClaimStatus": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -5203,7 +4449,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -5211,8 +4456,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5223,7 +4467,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ObjectMeta", @@ -5242,15 +4485,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -5261,17 +4501,14 @@ }, "kubernetes_core_PersistentVolumeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolume", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolume" @@ -5279,7 +4516,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeList", "required": true }, @@ -5297,7 +4533,6 @@ }, "kubernetes_core_PersistentVolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -5396,15 +4631,12 @@ }, "kubernetes_core_PersistentVolumeSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -5421,7 +4653,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -5478,11 +4709,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -5494,8 +4723,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -5518,16 +4746,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -5542,19 +4768,15 @@ }, "kubernetes_core_PersistentVolumeStatus": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5565,15 +4787,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5584,17 +4803,14 @@ }, "kubernetes_core_Pod": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pod", "required": true }, @@ -5620,11 +4836,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5633,7 +4847,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5649,7 +4862,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_LabelSelector", @@ -5657,16 +4869,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5677,11 +4886,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -5690,7 +4897,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -5706,7 +4912,6 @@ }, "kubernetes_core_PodCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -5717,20 +4922,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5741,20 +4942,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -5763,11 +4960,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5779,15 +4974,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5798,47 +4990,37 @@ }, "kubernetes_core_PodExecOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "command": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "container": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "PodExecOptions", "required": true }, "stderr": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdout": { - "type": "boolean", - "description": "" + "type": "boolean" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -5849,11 +5031,9 @@ }, "kubernetes_core_PodIP": { "type": "object", - "description": "", "properties": { "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5864,17 +5044,14 @@ }, "kubernetes_core_PodList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Pod", "existingJavaType": "io.fabric8.kubernetes.api.model.Pod" @@ -5882,7 +5059,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodList", "required": true }, @@ -5900,11 +5076,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5915,29 +5089,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -5950,17 +5118,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -5980,11 +5145,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -5992,12 +5155,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -6008,16 +5169,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -6026,7 +5184,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -6034,24 +5191,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6060,7 +5212,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -6068,21 +5219,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6090,20 +5237,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -6111,49 +5254,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -6162,7 +5295,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -6171,7 +5303,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -6187,11 +5318,9 @@ }, "kubernetes_core_PodStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodCondition", @@ -6200,7 +5329,6 @@ }, "containerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6209,7 +5337,6 @@ }, "ephemeralContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6217,12 +5344,10 @@ } }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "initContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -6230,24 +5355,19 @@ } }, "message": { - "type": "string", - "description": "" + "type": "string" }, "nominatedNodeName": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "podIP": { - "type": "string", - "description": "" + "type": "string" }, "podIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodIP", @@ -6255,12 +5375,10 @@ } }, "qosClass": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -6275,17 +5393,14 @@ }, "kubernetes_core_PodTemplate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -6307,17 +5422,14 @@ }, "kubernetes_core_PodTemplateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PodTemplate", "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplate" @@ -6325,7 +5437,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodTemplateList", "required": true }, @@ -6343,7 +5454,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ObjectMeta", @@ -6362,19 +5472,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6385,15 +5491,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6404,39 +5508,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6447,15 +5545,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -6470,31 +5565,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6505,43 +5593,34 @@ }, "kubernetes_core_RBDPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6552,43 +5631,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6599,17 +5669,14 @@ }, "kubernetes_core_ReplicationController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicationController", "required": true }, @@ -6635,27 +5702,22 @@ }, "kubernetes_core_ReplicationControllerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6666,17 +5728,14 @@ }, "kubernetes_core_ReplicationControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ReplicationController", "existingJavaType": "io.fabric8.kubernetes.api.model.ReplicationController" @@ -6684,7 +5743,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicationControllerList", "required": true }, @@ -6702,22 +5760,17 @@ }, "kubernetes_core_ReplicationControllerSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6734,15 +5787,12 @@ }, "kubernetes_core_ReplicationControllerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ReplicationControllerCondition", @@ -6750,21 +5800,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -6775,19 +5821,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6798,17 +5841,14 @@ }, "kubernetes_core_ResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ResourceQuota", "required": true }, @@ -6834,17 +5874,14 @@ }, "kubernetes_core_ResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ResourceQuota", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceQuota" @@ -6852,7 +5889,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ResourceQuotaList", "required": true }, @@ -6870,11 +5906,9 @@ }, "kubernetes_core_ResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6887,11 +5921,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6903,11 +5935,9 @@ }, "kubernetes_core_ResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6916,7 +5946,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6932,11 +5961,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6945,7 +5972,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -6961,23 +5987,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6988,47 +6009,37 @@ }, "kubernetes_core_ScaleIOPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7039,47 +6050,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7090,11 +6091,9 @@ }, "kubernetes_core_ScopeSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -7110,23 +6109,18 @@ }, "kubernetes_core_ScopedResourceSelectorRequirement": { "type": "object", - "description": "", "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7138,15 +6132,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7157,30 +6148,24 @@ }, "kubernetes_core_Secret": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "Secret", "required": true }, @@ -7190,16 +6175,13 @@ }, "stringData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7211,15 +6193,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7230,19 +6209,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7253,17 +6228,14 @@ }, "kubernetes_core_SecretList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Secret", "existingJavaType": "io.fabric8.kubernetes.api.model.Secret" @@ -7271,7 +6243,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecretList", "required": true }, @@ -7289,11 +6260,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7301,12 +6270,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7317,15 +6284,12 @@ }, "kubernetes_core_SecretReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7336,15 +6300,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7352,12 +6313,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7368,40 +6327,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -7425,17 +6376,14 @@ }, "kubernetes_core_Service": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -7461,21 +6409,17 @@ }, "kubernetes_core_ServiceAccount": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7484,7 +6428,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccount", "required": true }, @@ -7494,7 +6437,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -7511,17 +6453,14 @@ }, "kubernetes_core_ServiceAccountList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ServiceAccount", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceAccount" @@ -7529,7 +6468,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccountList", "required": true }, @@ -7547,20 +6485,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7571,17 +6505,14 @@ }, "kubernetes_core_ServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Service", "existingJavaType": "io.fabric8.kubernetes.api.model.Service" @@ -7589,7 +6520,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, @@ -7607,29 +6537,23 @@ }, "kubernetes_core_ServicePort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "nodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7644,53 +6568,41 @@ }, "kubernetes_core_ServiceSpec": { "type": "object", - "description": "", "properties": { "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "externalIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "externalTrafficPolicy": { - "type": "string", - "description": "" + "type": "string" }, "healthCheckNodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "ipFamily": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerIP": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerSourceRanges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ServicePort", @@ -7698,21 +6610,17 @@ } }, "publishNotReadyAddresses": { - "type": "boolean", - "description": "" + "type": "boolean" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "sessionAffinity": { - "type": "string", - "description": "" + "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/kubernetes_core_SessionAffinityConfig", @@ -7720,16 +6628,13 @@ }, "topologyKeys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7740,7 +6645,6 @@ }, "kubernetes_core_ServiceStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -7755,7 +6659,6 @@ }, "kubernetes_core_SessionAffinityConfig": { "type": "object", - "description": "", "properties": { "clientIP": { "$ref": "#/definitions/kubernetes_core_ClientIPConfig", @@ -7770,27 +6673,22 @@ }, "kubernetes_core_StorageOSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7801,27 +6699,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7832,15 +6725,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7851,11 +6741,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7870,23 +6758,19 @@ }, "kubernetes_core_Taint": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "timeAdded": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7897,28 +6781,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7929,18 +6807,14 @@ }, "kubernetes_core_TopologySelectorLabelRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7952,11 +6826,9 @@ }, "kubernetes_core_TopologySelectorTerm": { "type": "object", - "description": "", "properties": { "matchLabelExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorLabelRequirement", @@ -7972,23 +6844,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7999,19 +6867,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8022,7 +6886,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8098,7 +6961,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -8155,15 +7017,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8174,31 +7033,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8209,7 +7061,6 @@ }, "kubernetes_core_VolumeNodeAffinity": { "type": "object", - "description": "", "properties": { "required": { "$ref": "#/definitions/kubernetes_core_NodeSelector", @@ -8224,7 +7075,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -8251,7 +7101,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -8378,23 +7227,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8405,15 +7249,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -8424,19 +7266,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8447,11 +7285,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8462,7 +7298,6 @@ }, "kubernetes_watch_WatchEvent": { "type": "object", - "description": "", "properties": { "object": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -8750,19 +7585,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery", @@ -8770,7 +7602,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ServerAddressByClientCIDR", @@ -8779,7 +7610,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -8792,13 +7622,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -8806,7 +7634,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -8817,13 +7644,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiregistration.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIService", "required": true }, @@ -8849,20 +7674,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8871,13 +7692,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apiregistration.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_aggregator_APIService", "existingJavaType": "io.fabric8.kubernetes.api.model.APIService" @@ -8885,7 +7704,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIServiceList", "required": true }, @@ -8899,32 +7717,26 @@ "apiservicespec": { "properties": { "caBundle": { - "type": "string", - "description": "" + "type": "string" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "groupPriorityMinimum": { - "type": "integer", - "description": "" + "type": "integer" }, "insecureSkipTLSVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "service": { "$ref": "#/definitions/kubernetes_aggregator_ServiceReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceReference" }, "version": { - "type": "string", - "description": "" + "type": "string" }, "versionPriority": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8933,7 +7745,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_aggregator_APIServiceCondition", @@ -8946,12 +7757,10 @@ "attachedvolume": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8959,27 +7768,21 @@ "authinfo": { "properties": { "as": { - "type": "string", - "description": "" + "type": "string" }, "as-groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "as-user-extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -8989,20 +7792,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.AuthProviderConfig" }, "client-certificate": { - "type": "string", - "description": "" + "type": "string" }, "client-certificate-data": { - "type": "string", - "description": "" + "type": "string" }, "client-key": { - "type": "string", - "description": "" + "type": "string" }, "client-key-data": { - "type": "string", - "description": "" + "type": "string" }, "exec": { "$ref": "#/definitions/kubernetes_config_ExecConfig", @@ -9010,7 +7809,6 @@ }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -9018,20 +7816,16 @@ } }, "password": { - "type": "string", - "description": "" + "type": "string" }, "token": { - "type": "string", - "description": "" + "type": "string" }, "tokenFile": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9040,16 +7834,13 @@ "properties": { "config": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9057,20 +7848,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9078,28 +7865,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9107,20 +7888,16 @@ "azurefilepersistentvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9128,16 +7905,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9146,13 +7920,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Binding", "required": true }, @@ -9171,20 +7943,16 @@ "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9194,31 +7962,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9227,31 +7989,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9259,20 +8015,17 @@ "cinderpersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9280,20 +8033,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9301,8 +8051,7 @@ "clientipconfig": { "properties": { "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9310,16 +8059,13 @@ "cluster": { "properties": { "certificate-authority": { - "type": "string", - "description": "" + "type": "string" }, "certificate-authority-data": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -9327,20 +8073,16 @@ } }, "insecure-skip-tls-verify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "proxy-url": { - "type": "string", - "description": "" + "type": "string" }, "server": { - "type": "string", - "description": "" + "type": "string" }, "tls-server-name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9348,20 +8090,16 @@ "componentcondition": { "properties": { "error": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9370,13 +8108,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ComponentCondition", @@ -9385,7 +8121,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatus", "required": true }, @@ -9400,13 +8135,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ComponentStatus", "existingJavaType": "io.fabric8.kubernetes.api.model.ComponentStatus" @@ -9414,7 +8147,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ComponentStatusList", "required": true }, @@ -9432,25 +8164,20 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9458,12 +8185,10 @@ "config": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "clusters": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedCluster", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedCluster" @@ -9471,19 +8196,16 @@ }, "contexts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedContext", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedContext" } }, "current-context": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -9491,8 +8213,7 @@ } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "preferences": { "$ref": "#/definitions/kubernetes_config_Preferences", @@ -9500,7 +8221,6 @@ }, "users": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedAuthInfo", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedAuthInfo" @@ -9513,35 +8233,28 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "binaryData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ConfigMap", "required": true }, @@ -9555,12 +8268,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9568,16 +8279,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9586,13 +8294,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ConfigMap", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMap" @@ -9600,7 +8306,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigMapList", "required": true }, @@ -9614,24 +8319,19 @@ "configmapnodeconfigsource": { "properties": { "kubeletConfigKey": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9640,7 +8340,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -9648,12 +8347,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9661,12 +8358,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -9674,12 +8369,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9688,25 +8381,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -9715,7 +8403,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -9723,12 +8410,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -9740,13 +8425,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -9770,28 +8453,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -9800,7 +8477,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -9808,8 +8484,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9818,15 +8493,12 @@ "properties": { "names": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "sizeBytes": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -9835,26 +8507,21 @@ "containerport": { "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9888,28 +8555,23 @@ "containerstateterminated": { "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "exitCode": { - "type": "integer", - "description": "" + "type": "integer" }, "finishedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "signal": { - "type": "integer", - "description": "" + "type": "integer" }, "startedAt": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -9921,12 +8583,10 @@ "containerstatewaiting": { "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9934,16 +8594,13 @@ "containerstatus": { "properties": { "containerID": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "lastState": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -9951,21 +8608,17 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ready": { - "type": "boolean", - "description": "" + "type": "boolean" }, "restartCount": { - "type": "integer", - "description": "" + "type": "integer" }, "started": { - "type": "boolean", - "description": "" + "type": "boolean" }, "state": { "$ref": "#/definitions/kubernetes_core_ContainerState", @@ -9977,12 +8630,10 @@ "context": { "properties": { "cluster": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -9990,12 +8641,10 @@ } }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10004,26 +8653,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -10041,12 +8685,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -10057,21 +8699,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10079,27 +8717,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -10109,8 +8742,7 @@ "daemonendpoint": { "properties": { "Port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -10119,41 +8751,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10162,7 +8787,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -10179,12 +8803,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -10196,12 +8818,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -10214,8 +8834,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -10227,16 +8846,13 @@ "endpointaddress": { "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10248,22 +8864,18 @@ "endpointport": { "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10272,13 +8884,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Endpoints", "required": true }, @@ -10288,7 +8898,6 @@ }, "subsets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointSubset", @@ -10302,13 +8911,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Endpoints", "existingJavaType": "io.fabric8.kubernetes.api.model.Endpoints" @@ -10316,7 +8923,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointsList", "required": true }, @@ -10331,7 +8937,6 @@ "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -10340,7 +8945,6 @@ }, "notReadyAddresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointAddress", @@ -10349,7 +8953,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EndpointPort", @@ -10366,8 +8969,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -10380,12 +8982,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -10419,25 +9019,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10446,7 +9041,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -10454,12 +9048,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -10470,12 +9062,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -10499,32 +9089,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -10533,7 +9116,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -10541,8 +9123,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10551,25 +9132,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10578,7 +9154,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -10586,12 +9161,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -10602,12 +9175,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -10631,28 +9202,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -10661,7 +9226,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -10669,8 +9233,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10678,8 +9241,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -10691,18 +9253,15 @@ "event": { "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "count": { - "type": "integer", - "description": "" + "type": "integer" }, "eventTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_MicroTime", @@ -10718,7 +9277,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Event", "required": true }, @@ -10727,28 +9285,24 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ObjectMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "related": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reportingComponent": { - "type": "string", - "description": "" + "type": "string" }, "reportingInstance": { - "type": "string", - "description": "" + "type": "string" }, "series": { "$ref": "#/definitions/kubernetes_core_EventSeries", @@ -10759,8 +9313,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.EventSource" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10769,13 +9322,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Event", "existingJavaType": "io.fabric8.kubernetes.api.model.Event" @@ -10783,7 +9334,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventList", "required": true }, @@ -10797,8 +9347,7 @@ "eventseries": { "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_MicroTime", @@ -10810,12 +9359,10 @@ "eventsource": { "properties": { "component": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10824,11 +9371,9 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10837,32 +9382,26 @@ "execconfig": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "args": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_ExecEnvVar", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecEnvVar" } }, "installHint": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10870,12 +9409,10 @@ "execenvvar": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10883,33 +9420,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10921,25 +9451,20 @@ "flexpersistentvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -10951,25 +9476,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -10981,12 +9501,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10994,20 +9512,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -11016,19 +9530,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11036,16 +9547,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11053,20 +9561,16 @@ "glusterfspersistentvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -11074,16 +9578,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -11091,12 +9592,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11104,16 +9603,13 @@ "groupversionkind": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11121,16 +9617,13 @@ "groupversionresource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11156,16 +9649,13 @@ "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11173,12 +9663,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11186,12 +9674,10 @@ "httpgetaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -11199,16 +9685,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11216,12 +9700,10 @@ "httpheader": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11232,40 +9714,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11273,16 +9746,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -11291,53 +9761,42 @@ "iscsipersistentvolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11345,53 +9804,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11399,16 +9847,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11417,7 +9862,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_LabelSelectorRequirement", @@ -11426,10 +9870,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -11439,20 +9881,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -11475,13 +9913,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "LimitRange", "required": true }, @@ -11500,7 +9936,6 @@ "properties": { "default": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -11509,7 +9944,6 @@ }, "defaultRequest": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -11518,7 +9952,6 @@ }, "max": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -11527,7 +9960,6 @@ }, "maxLimitRequestRatio": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -11536,7 +9968,6 @@ }, "min": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -11544,8 +9975,7 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11554,13 +9984,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRange", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRange" @@ -11568,7 +9996,6 @@ }, "kind": { "type": "string", - "description": "", "default": "LimitRangeList", "required": true }, @@ -11583,7 +10010,6 @@ "properties": { "limits": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_LimitRangeItem", "existingJavaType": "io.fabric8.kubernetes.api.model.LimitRangeItem" @@ -11596,13 +10022,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -11610,7 +10034,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -11624,21 +10047,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11646,54 +10065,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -11701,12 +10109,10 @@ "loadbalanceringress": { "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11715,7 +10121,6 @@ "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -11728,8 +10133,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11737,12 +10141,10 @@ "localvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11750,24 +10152,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -11779,8 +10177,7 @@ "microtime": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11788,8 +10185,7 @@ "namedauthinfo": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_config_AuthInfo", @@ -11805,8 +10201,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Cluster" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11818,8 +10213,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Context" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11831,8 +10225,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11841,13 +10234,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Namespace", "required": true }, @@ -11873,20 +10264,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11895,13 +10282,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Namespace", "existingJavaType": "io.fabric8.kubernetes.api.model.Namespace" @@ -11909,7 +10294,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NamespaceList", "required": true }, @@ -11924,11 +10308,9 @@ "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -11938,7 +10320,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -11946,8 +10327,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11955,16 +10335,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11973,13 +10350,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Node", "required": true }, @@ -12001,12 +10376,10 @@ "nodeaddress": { "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12015,7 +10388,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -12040,20 +10412,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12078,8 +10446,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/kubernetes_core_NodeConfigSource", @@ -12101,13 +10468,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Node", "existingJavaType": "io.fabric8.kubernetes.api.model.Node" @@ -12115,7 +10480,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeList", "required": true }, @@ -12130,7 +10494,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -12142,20 +10505,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12165,7 +10524,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -12174,7 +10532,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -12191,29 +10548,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeConfigSource" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "podCIDR": { - "type": "string", - "description": "" + "type": "string" }, "podCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "providerID": { - "type": "string", - "description": "" + "type": "string" }, "taints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Taint", @@ -12221,8 +10572,7 @@ } }, "unschedulable": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -12231,7 +10581,6 @@ "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeAddress", @@ -12240,7 +10589,6 @@ }, "allocatable": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -12249,7 +10597,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -12258,7 +10605,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeCondition", @@ -12275,7 +10621,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerImage", @@ -12287,12 +10632,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSystemInfo" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "volumesAttached": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_AttachedVolume", @@ -12301,11 +10644,9 @@ }, "volumesInUse": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12314,44 +10655,34 @@ "nodesysteminfo": { "properties": { "architecture": { - "type": "string", - "description": "" + "type": "string" }, "bootID": { - "type": "string", - "description": "" + "type": "string" }, "containerRuntimeVersion": { - "type": "string", - "description": "" + "type": "string" }, "kernelVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeProxyVersion": { - "type": "string", - "description": "" + "type": "string" }, "kubeletVersion": { - "type": "string", - "description": "" + "type": "string" }, "machineID": { - "type": "string", - "description": "" + "type": "string" }, "operatingSystem": { - "type": "string", - "description": "" + "type": "string" }, "osImage": { - "type": "string", - "description": "" + "type": "string" }, "systemUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12359,12 +10690,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12373,16 +10702,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -12390,7 +10716,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -12399,34 +10724,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ManagedFieldsEntry", @@ -12434,18 +10752,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_OwnerReference", @@ -12453,16 +10768,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12470,32 +10782,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12503,28 +10808,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12536,30 +10835,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -12570,13 +10863,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolume", "required": true }, @@ -12599,13 +10890,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaim", "required": true }, @@ -12635,20 +10924,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12657,13 +10942,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaim", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim" @@ -12671,7 +10954,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeClaimList", "required": true }, @@ -12686,11 +10968,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -12706,16 +10986,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12724,16 +11001,13 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -12742,7 +11016,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -12750,8 +11023,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -12772,12 +11044,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -12786,13 +11056,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolume", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolume" @@ -12800,7 +11068,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PersistentVolumeList", "required": true }, @@ -12908,11 +11175,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -12929,7 +11194,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -12986,11 +11250,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -13002,8 +11264,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -13026,16 +11287,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -13047,16 +11306,13 @@ "persistentvolumestatus": { "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13064,12 +11320,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13078,13 +11332,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pod", "required": true }, @@ -13107,7 +11359,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -13116,7 +11367,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -13134,16 +11384,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13152,7 +11399,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -13161,7 +11407,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -13182,20 +11427,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13204,16 +11445,13 @@ "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -13222,11 +11460,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -13235,12 +11471,10 @@ "poddnsconfigoption": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13249,43 +11483,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "command": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "container": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "PodExecOptions", "required": true }, "stderr": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdout": { - "type": "boolean", - "description": "" + "type": "boolean" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -13293,8 +11518,7 @@ "podip": { "properties": { "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13303,13 +11527,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Pod", "existingJavaType": "io.fabric8.kubernetes.api.model.Pod" @@ -13317,7 +11539,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodList", "required": true }, @@ -13331,8 +11552,7 @@ "podreadinessgate": { "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13341,25 +11561,20 @@ "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -13372,17 +11587,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -13400,7 +11612,6 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -13408,12 +11619,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -13424,16 +11633,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -13442,7 +11648,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -13450,24 +11655,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -13476,7 +11676,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -13484,21 +11683,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -13506,20 +11701,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -13527,49 +11718,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -13578,7 +11759,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -13587,7 +11767,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -13601,7 +11780,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodCondition", @@ -13610,7 +11788,6 @@ }, "containerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -13619,7 +11796,6 @@ }, "ephemeralContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -13627,12 +11803,10 @@ } }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "initContainerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerStatus", @@ -13640,24 +11814,19 @@ } }, "message": { - "type": "string", - "description": "" + "type": "string" }, "nominatedNodeName": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "podIP": { - "type": "string", - "description": "" + "type": "string" }, "podIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodIP", @@ -13665,12 +11834,10 @@ } }, "qosClass": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", @@ -13683,13 +11850,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodTemplate", "required": true }, @@ -13708,13 +11873,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_PodTemplate", "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplate" @@ -13722,7 +11885,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodTemplateList", "required": true }, @@ -13749,16 +11911,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13766,12 +11925,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13779,12 +11936,10 @@ "preferences": { "properties": { "colors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -13801,8 +11956,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -13814,32 +11968,27 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -13847,12 +11996,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -13864,8 +12011,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13873,28 +12019,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13905,40 +12045,32 @@ "rbdpersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13946,40 +12078,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -13988,13 +12112,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicationController", "required": true }, @@ -14020,20 +12142,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14042,13 +12160,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ReplicationController", "existingJavaType": "io.fabric8.kubernetes.api.model.ReplicationController" @@ -14056,7 +12172,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicationControllerList", "required": true }, @@ -14070,19 +12185,15 @@ "replicationcontrollerspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -14096,12 +12207,10 @@ "replicationcontrollerstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ReplicationControllerCondition", @@ -14109,21 +12218,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -14131,16 +12236,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14149,13 +12252,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ResourceQuota", "required": true }, @@ -14178,13 +12279,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ResourceQuota", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceQuota" @@ -14192,7 +12291,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ResourceQuotaList", "required": true }, @@ -14207,7 +12305,6 @@ "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -14220,11 +12317,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -14234,7 +12329,6 @@ "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -14243,7 +12337,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -14257,7 +12350,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -14266,7 +12358,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -14280,10 +12371,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -14292,44 +12381,35 @@ "scaleiopersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14337,44 +12417,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14382,20 +12453,16 @@ "scopedresourceselectorrequirement": { "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -14405,7 +12472,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -14418,12 +12484,10 @@ "seccompprofile": { "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14432,26 +12496,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "data": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "immutable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "Secret", "required": true }, @@ -14461,16 +12520,13 @@ }, "stringData": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14478,12 +12534,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -14491,16 +12545,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -14509,13 +12560,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Secret", "existingJavaType": "io.fabric8.kubernetes.api.model.Secret" @@ -14523,7 +12572,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecretList", "required": true }, @@ -14538,7 +12586,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -14546,12 +12593,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -14559,12 +12604,10 @@ "secretreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14572,12 +12615,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -14585,12 +12626,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14598,37 +12637,30 @@ "securitycontext": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -14649,20 +12681,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14670,12 +12698,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14684,13 +12710,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -14713,17 +12737,14 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -14732,7 +12753,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccount", "required": true }, @@ -14742,7 +12762,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -14756,13 +12775,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ServiceAccount", "existingJavaType": "io.fabric8.kubernetes.api.model.ServiceAccount" @@ -14770,7 +12787,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceAccountList", "required": true }, @@ -14784,17 +12800,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14803,13 +12816,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Service", "existingJavaType": "io.fabric8.kubernetes.api.model.Service" @@ -14817,7 +12828,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, @@ -14831,26 +12841,21 @@ "serviceport": { "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "nodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -14862,16 +12867,13 @@ "servicereference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -14879,50 +12881,39 @@ "servicespec": { "properties": { "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "externalIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "externalTrafficPolicy": { - "type": "string", - "description": "" + "type": "string" }, "healthCheckNodePort": { - "type": "integer", - "description": "" + "type": "integer" }, "ipFamily": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerIP": { - "type": "string", - "description": "" + "type": "string" }, "loadBalancerSourceRanges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ServicePort", @@ -14930,21 +12921,17 @@ } }, "publishNotReadyAddresses": { - "type": "boolean", - "description": "" + "type": "boolean" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "sessionAffinity": { - "type": "string", - "description": "" + "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/kubernetes_core_SessionAffinityConfig", @@ -14952,16 +12939,13 @@ }, "topologyKeys": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14988,13 +12972,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_StatusDetails", @@ -15002,25 +12984,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15028,16 +13006,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15046,7 +13021,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_StatusCause", @@ -15054,24 +13028,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15079,24 +13048,20 @@ "storageospersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15104,24 +13069,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15129,12 +13090,10 @@ "sysctl": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15142,20 +13101,17 @@ "taint": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "timeAdded": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_apis_Time", "existingJavaType": "String" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15163,8 +13119,7 @@ "tcpsocketaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -15176,8 +13131,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15185,25 +13139,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15211,15 +13160,12 @@ "topologyselectorlabelrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -15229,7 +13175,6 @@ "properties": { "matchLabelExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorLabelRequirement", @@ -15246,16 +13191,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15263,16 +13205,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15280,12 +13219,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15294,26 +13231,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -15396,7 +13328,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -15450,12 +13381,10 @@ "volumedevice": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15463,28 +13392,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15643,20 +13566,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15681,8 +13600,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -15690,16 +13608,13 @@ "windowssecuritycontextoptions": { "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/kube-schema.json index 794e6742008..c175f3a44a3 100644 --- a/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,35 +746,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -928,14 +777,11 @@ }, "kubernetes_discovery_Endpoint": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "conditions": { @@ -943,8 +789,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointConditions" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -952,10 +797,8 @@ }, "topology": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -968,11 +811,9 @@ }, "kubernetes_discovery_EndpointConditions": { "type": "object", - "description": "", "properties": { "ready": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -983,25 +824,20 @@ }, "kubernetes_discovery_EndpointPort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1012,21 +848,17 @@ }, "kubernetes_discovery_EndpointSlice": { "type": "object", - "description": "", "properties": { "addressType": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "discovery/v1beta1", "required": true }, "endpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_Endpoint", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.Endpoint" @@ -1034,7 +866,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointSlice", "required": true }, @@ -1044,7 +875,6 @@ }, "ports": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_EndpointPort", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointPort" @@ -1060,17 +890,14 @@ }, "kubernetes_discovery_EndpointSliceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "discovery/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_EndpointSlice", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointSlice" @@ -1078,7 +905,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointSliceList", "required": true }, diff --git a/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/validation-schema.json index d2c2eda3b04..59d6cb34e2c 100644 --- a/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-discovery/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,35 +746,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -928,14 +777,11 @@ }, "kubernetes_discovery_Endpoint": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "conditions": { @@ -943,8 +789,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointConditions" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -952,10 +797,8 @@ }, "topology": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -968,11 +811,9 @@ }, "kubernetes_discovery_EndpointConditions": { "type": "object", - "description": "", "properties": { "ready": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -983,25 +824,20 @@ }, "kubernetes_discovery_EndpointPort": { "type": "object", - "description": "", "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1012,21 +848,17 @@ }, "kubernetes_discovery_EndpointSlice": { "type": "object", - "description": "", "properties": { "addressType": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "discovery/v1beta1", "required": true }, "endpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_Endpoint", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.Endpoint" @@ -1034,7 +866,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointSlice", "required": true }, @@ -1044,7 +875,6 @@ }, "ports": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_EndpointPort", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointPort" @@ -1060,17 +890,14 @@ }, "kubernetes_discovery_EndpointSliceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "discovery/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_EndpointSlice", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointSlice" @@ -1078,7 +905,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointSliceList", "required": true }, @@ -1188,19 +1014,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1208,7 +1031,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1217,7 +1039,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1230,13 +1051,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1244,7 +1063,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1255,26 +1073,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1285,41 +1098,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1328,10 +1134,8 @@ "properties": { "addresses": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "conditions": { @@ -1339,8 +1143,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointConditions" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "targetRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -1348,10 +1151,8 @@ }, "topology": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1361,8 +1162,7 @@ "endpointconditions": { "properties": { "ready": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1370,22 +1170,18 @@ "endpointport": { "properties": { "appProtocol": { - "type": "string", - "description": "" + "type": "string" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "port": { - "type": "integer", - "description": "" + "type": "integer" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1393,18 +1189,15 @@ "endpointslice": { "properties": { "addressType": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "discovery/v1beta1", "required": true }, "endpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_Endpoint", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.Endpoint" @@ -1412,7 +1205,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointSlice", "required": true }, @@ -1422,7 +1214,6 @@ }, "ports": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_EndpointPort", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointPort" @@ -1435,13 +1226,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "discovery/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_discovery_EndpointSlice", "existingJavaType": "io.fabric8.kubernetes.api.model.discovery.EndpointSlice" @@ -1449,7 +1238,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EndpointSliceList", "required": true }, @@ -1467,19 +1255,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1487,12 +1272,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1503,40 +1286,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1545,13 +1319,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1559,7 +1331,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1573,21 +1344,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1595,54 +1362,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1650,24 +1406,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1680,16 +1432,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1697,7 +1446,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1706,34 +1454,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1741,18 +1482,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1760,16 +1498,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1777,32 +1512,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1810,28 +1538,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1843,30 +1565,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1876,12 +1592,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1889,8 +1603,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1902,10 +1615,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1914,12 +1625,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1928,13 +1637,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1942,25 +1649,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1968,16 +1671,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1986,7 +1686,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -1994,24 +1693,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2019,8 +1713,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2028,12 +1721,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2042,26 +1733,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/kube-schema.json index 187646f3e26..2728847ad01 100644 --- a/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,11 +339,9 @@ }, "kubernetes_apimachinery_MicroTime": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -414,20 +352,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -435,7 +369,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -444,34 +377,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -479,18 +405,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -498,16 +421,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -518,31 +438,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -553,7 +466,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -562,34 +474,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -602,15 +507,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -621,14 +523,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -640,15 +539,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -659,17 +555,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -677,25 +570,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -706,19 +595,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -729,11 +614,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -741,24 +624,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,11 +647,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -784,15 +660,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -803,30 +676,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -839,7 +706,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -848,7 +714,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -857,43 +722,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -904,15 +759,12 @@ }, "kubernetes_core_EventSource": { "type": "object", - "description": "", "properties": { "component": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -923,35 +775,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -962,21 +806,17 @@ }, "kubernetes_events_Event": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "events.k8s.io/v1beta1", "required": true }, "deprecatedCount": { - "type": "integer", - "description": "" + "type": "integer" }, "deprecatedFirstTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -996,7 +836,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Event", "required": true }, @@ -1005,12 +844,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "note": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "regarding": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -1021,20 +858,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reportingController": { - "type": "string", - "description": "" + "type": "string" }, "reportingInstance": { - "type": "string", - "description": "" + "type": "string" }, "series": { "$ref": "#/definitions/kubernetes_events_EventSeries", "existingJavaType": "io.fabric8.kubernetes.api.model.events.EventSeries" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1046,17 +880,14 @@ }, "kubernetes_events_EventList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "events.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_events_Event", "existingJavaType": "io.fabric8.kubernetes.api.model.events.Event" @@ -1064,7 +895,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventList", "required": true }, @@ -1082,11 +912,9 @@ }, "kubernetes_events_EventSeries": { "type": "object", - "description": "", "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", diff --git a/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/validation-schema.json index 33cfea7df9c..fc38db559ca 100644 --- a/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-events/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,11 +339,9 @@ }, "kubernetes_apimachinery_MicroTime": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -414,20 +352,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -435,7 +369,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -444,34 +377,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -479,18 +405,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -498,16 +421,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -518,31 +438,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -553,7 +466,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -562,34 +474,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -602,15 +507,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -621,14 +523,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -640,15 +539,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -659,17 +555,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -677,25 +570,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -706,19 +595,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -729,11 +614,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -741,24 +624,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,11 +647,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -784,15 +660,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -803,30 +676,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -839,7 +706,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -848,7 +714,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -857,43 +722,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -904,15 +759,12 @@ }, "kubernetes_core_EventSource": { "type": "object", - "description": "", "properties": { "component": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -923,35 +775,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -962,21 +806,17 @@ }, "kubernetes_events_Event": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "events.k8s.io/v1beta1", "required": true }, "deprecatedCount": { - "type": "integer", - "description": "" + "type": "integer" }, "deprecatedFirstTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -996,7 +836,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Event", "required": true }, @@ -1005,12 +844,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "note": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "regarding": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -1021,20 +858,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reportingController": { - "type": "string", - "description": "" + "type": "string" }, "reportingInstance": { - "type": "string", - "description": "" + "type": "string" }, "series": { "$ref": "#/definitions/kubernetes_events_EventSeries", "existingJavaType": "io.fabric8.kubernetes.api.model.events.EventSeries" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1046,17 +880,14 @@ }, "kubernetes_events_EventList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "events.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_events_Event", "existingJavaType": "io.fabric8.kubernetes.api.model.events.Event" @@ -1064,7 +895,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventList", "required": true }, @@ -1082,11 +912,9 @@ }, "kubernetes_events_EventSeries": { "type": "object", - "description": "", "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", @@ -1193,19 +1021,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1213,7 +1038,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1222,7 +1046,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1235,13 +1058,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1249,7 +1070,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1260,26 +1080,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1290,41 +1105,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1332,18 +1140,15 @@ "event": { "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "apiVersion": { "type": "string", - "description": "", "default": "events.k8s.io/v1beta1", "required": true }, "deprecatedCount": { - "type": "integer", - "description": "" + "type": "integer" }, "deprecatedFirstTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1363,7 +1168,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Event", "required": true }, @@ -1372,12 +1176,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "note": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "regarding": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -1388,20 +1190,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reportingController": { - "type": "string", - "description": "" + "type": "string" }, "reportingInstance": { - "type": "string", - "description": "" + "type": "string" }, "series": { "$ref": "#/definitions/kubernetes_events_EventSeries", "existingJavaType": "io.fabric8.kubernetes.api.model.events.EventSeries" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1410,13 +1209,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "events.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_events_Event", "existingJavaType": "io.fabric8.kubernetes.api.model.events.Event" @@ -1424,7 +1221,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventList", "required": true }, @@ -1438,8 +1234,7 @@ "eventseries": { "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/kubernetes_apimachinery_MicroTime", @@ -1451,12 +1246,10 @@ "eventsource": { "properties": { "component": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1468,19 +1261,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1488,12 +1278,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1504,40 +1292,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1546,13 +1325,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1560,7 +1337,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1574,21 +1350,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1596,54 +1368,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1651,24 +1412,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1680,8 +1437,7 @@ "microtime": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1690,16 +1446,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1707,7 +1460,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1716,34 +1468,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1751,18 +1496,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1770,16 +1512,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1787,32 +1526,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1820,28 +1552,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1853,30 +1579,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1886,12 +1606,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1899,8 +1617,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1912,10 +1629,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1924,12 +1639,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1938,13 +1651,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1952,25 +1663,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1978,16 +1685,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1996,7 +1700,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -2004,24 +1707,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2029,8 +1727,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2038,12 +1735,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2052,26 +1747,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/kube-schema.json index 721b8fc8436..ef9ece3f28b 100644 --- a/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,23 +814,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -997,7 +836,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1020,31 +858,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1055,19 +886,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1078,30 +905,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1114,24 +935,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1143,35 +959,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1182,23 +991,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1209,15 +1014,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1228,19 +1030,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1251,11 +1049,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1263,12 +1059,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1279,15 +1073,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1295,12 +1086,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1311,29 +1100,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1342,7 +1125,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1350,12 +1132,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1367,13 +1147,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1397,28 +1175,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1427,7 +1199,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1435,8 +1206,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1447,29 +1217,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1480,11 +1244,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1500,19 +1262,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1527,15 +1286,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1551,11 +1307,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -1570,15 +1324,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1593,16 +1345,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1617,7 +1366,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1644,29 +1392,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1675,7 +1417,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1683,12 +1424,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1699,12 +1438,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1728,32 +1465,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1762,7 +1492,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1770,8 +1499,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1782,29 +1510,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1813,7 +1535,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1821,12 +1542,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1837,12 +1556,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1866,28 +1583,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1896,7 +1607,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1904,8 +1614,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1916,11 +1625,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1935,15 +1642,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1955,36 +1659,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1996,28 +1692,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2032,15 +1722,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2051,23 +1738,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2078,19 +1760,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2101,19 +1779,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2124,15 +1798,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2140,16 +1811,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2160,15 +1829,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2179,7 +1845,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2202,20 +1867,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2226,15 +1887,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2245,56 +1903,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2305,19 +1951,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2328,7 +1970,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2347,15 +1988,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2366,11 +2004,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -2386,11 +2022,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2401,19 +2035,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2424,11 +2054,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2448,11 +2076,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2467,23 +2093,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2495,11 +2116,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2508,7 +2127,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2524,15 +2142,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2543,35 +2158,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2582,15 +2189,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -2606,16 +2210,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2626,7 +2227,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2645,15 +2245,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2664,15 +2261,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2683,11 +2277,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2696,7 +2288,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2712,7 +2303,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2720,16 +2310,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2740,11 +2327,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2753,7 +2338,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2769,20 +2353,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -2791,11 +2371,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2807,15 +2385,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2826,11 +2401,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2841,29 +2414,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2876,17 +2443,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -2906,11 +2470,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -2918,12 +2480,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -2934,16 +2494,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -2952,7 +2509,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -2960,24 +2516,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2986,7 +2537,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -2994,21 +2544,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3016,20 +2562,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3037,49 +2579,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3088,7 +2620,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3097,7 +2628,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3113,7 +2643,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3132,19 +2661,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3155,15 +2680,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3174,39 +2697,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3217,15 +2734,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3240,31 +2754,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3275,43 +2782,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3322,19 +2820,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3345,11 +2840,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3358,7 +2851,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3374,23 +2866,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3401,47 +2888,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3452,15 +2929,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3471,15 +2945,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3490,19 +2961,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3513,11 +2980,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3525,12 +2990,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3541,15 +3004,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3557,12 +3017,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3573,40 +3031,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3630,20 +3080,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3654,27 +3100,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3685,15 +3126,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3704,11 +3142,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3723,28 +3159,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3755,23 +3185,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3782,19 +3208,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3805,7 +3227,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -3881,7 +3302,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -3938,15 +3358,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3957,31 +3374,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3992,7 +3402,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4019,7 +3428,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4146,23 +3554,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4173,15 +3576,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4192,19 +3593,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4215,17 +3612,14 @@ }, "kubernetes_extensions_DaemonSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DaemonSet", "required": true }, @@ -4251,27 +3645,22 @@ }, "kubernetes_extensions_DaemonSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4282,17 +3671,14 @@ }, "kubernetes_extensions_DaemonSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_DaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.DaemonSet" @@ -4300,7 +3686,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DaemonSetList", "required": true }, @@ -4318,15 +3703,12 @@ }, "kubernetes_extensions_DaemonSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4338,7 +3720,6 @@ }, "templateGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updateStrategy": { @@ -4354,15 +3735,12 @@ }, "kubernetes_extensions_DaemonSetStatus": { "type": "object", - "description": "", "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_DaemonSetCondition", @@ -4370,37 +3748,29 @@ } }, "currentNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberAvailable": { - "type": "integer", - "description": "" + "type": "integer" }, "numberMisscheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberReady": { - "type": "integer", - "description": "" + "type": "integer" }, "numberUnavailable": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatedNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4411,15 +3781,13 @@ }, "kubernetes_extensions_DaemonSetUpdateStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_extensions_RollingUpdateDaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.RollingUpdateDaemonSet" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4430,17 +3798,14 @@ }, "kubernetes_extensions_Deployment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -4466,7 +3831,6 @@ }, "kubernetes_extensions_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4477,20 +3841,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4501,17 +3861,14 @@ }, "kubernetes_extensions_DeploymentList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_Deployment", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.Deployment" @@ -4519,7 +3876,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentList", "required": true }, @@ -4537,23 +3893,19 @@ }, "kubernetes_extensions_DeploymentRollback": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DeploymentRollback", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "rollbackTo": { "$ref": "#/definitions/kubernetes_extensions_RollbackConfig", @@ -4561,10 +3913,8 @@ }, "updatedAnnotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -4577,27 +3927,21 @@ }, "kubernetes_extensions_DeploymentSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "rollbackTo": { "$ref": "#/definitions/kubernetes_extensions_RollbackConfig", @@ -4624,19 +3968,15 @@ }, "kubernetes_extensions_DeploymentStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_DeploymentCondition", @@ -4645,24 +3985,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4673,15 +4008,13 @@ }, "kubernetes_extensions_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_extensions_RollingUpdateDeployment", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4692,19 +4025,16 @@ }, "kubernetes_extensions_HTTPIngressPath": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_extensions_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4715,11 +4045,9 @@ }, "kubernetes_extensions_HTTPIngressRuleValue": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.HTTPIngressPath" @@ -4734,19 +4062,15 @@ }, "kubernetes_extensions_IPBlock": { "type": "object", - "description": "", "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "except": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4758,17 +4082,14 @@ }, "kubernetes_extensions_Ingress": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -4794,15 +4115,13 @@ }, "kubernetes_extensions_IngressBackend": { "type": "object", - "description": "", "properties": { "resource": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.TypedLocalObjectReference" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "servicePort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -4817,17 +4136,14 @@ }, "kubernetes_extensions_IngressList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_Ingress", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.Ingress" @@ -4835,7 +4151,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -4853,11 +4168,9 @@ }, "kubernetes_extensions_IngressRule": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressRuleValue", @@ -4872,7 +4185,6 @@ }, "kubernetes_extensions_IngressRuleValue": { "type": "object", - "description": "", "properties": { "http": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressRuleValue", @@ -4887,19 +4199,16 @@ }, "kubernetes_extensions_IngressSpec": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_extensions_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_IngressRule", @@ -4908,7 +4217,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_IngressTLS", @@ -4924,7 +4232,6 @@ }, "kubernetes_extensions_IngressStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -4939,20 +4246,16 @@ }, "kubernetes_extensions_IngressTLS": { "type": "object", - "description": "", "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4963,17 +4266,14 @@ }, "kubernetes_extensions_NetworkPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicy", "required": true }, @@ -4995,11 +4295,9 @@ }, "kubernetes_extensions_NetworkPolicyEgressRule": { "type": "object", - "description": "", "properties": { "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPort", @@ -5008,7 +4306,6 @@ }, "to": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPeer", @@ -5024,11 +4321,9 @@ }, "kubernetes_extensions_NetworkPolicyIngressRule": { "type": "object", - "description": "", "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPeer", @@ -5037,7 +4332,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPort", @@ -5053,17 +4347,14 @@ }, "kubernetes_extensions_NetworkPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.NetworkPolicy" @@ -5071,7 +4362,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicyList", "required": true }, @@ -5089,7 +4379,6 @@ }, "kubernetes_extensions_NetworkPolicyPeer": { "type": "object", - "description": "", "properties": { "ipBlock": { "$ref": "#/definitions/kubernetes_extensions_IPBlock", @@ -5112,15 +4401,13 @@ }, "kubernetes_extensions_NetworkPolicyPort": { "type": "object", - "description": "", "properties": { "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5131,11 +4418,9 @@ }, "kubernetes_extensions_NetworkPolicySpec": { "type": "object", - "description": "", "properties": { "egress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyEgressRule", @@ -5144,7 +4429,6 @@ }, "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyIngressRule", @@ -5157,11 +4441,9 @@ }, "policyTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5173,17 +4455,14 @@ }, "kubernetes_extensions_ReplicaSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicaSet", "required": true }, @@ -5209,27 +4488,22 @@ }, "kubernetes_extensions_ReplicaSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5240,17 +4514,14 @@ }, "kubernetes_extensions_ReplicaSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_ReplicaSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.ReplicaSet" @@ -5258,7 +4529,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicaSetList", "required": true }, @@ -5276,15 +4546,12 @@ }, "kubernetes_extensions_ReplicaSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -5303,15 +4570,12 @@ }, "kubernetes_extensions_ReplicaSetStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_ReplicaSetCondition", @@ -5319,21 +4583,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -5344,11 +4604,9 @@ }, "kubernetes_extensions_RollbackConfig": { "type": "object", - "description": "", "properties": { "revision": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -5360,7 +4618,6 @@ }, "kubernetes_extensions_RollingUpdateDaemonSet": { "type": "object", - "description": "", "properties": { "maxUnavailable": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -5375,7 +4632,6 @@ }, "kubernetes_extensions_RollingUpdateDeployment": { "type": "object", - "description": "", "properties": { "maxSurge": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", diff --git a/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/validation-schema.json index 8fe385ae742..19b7f90bae7 100644 --- a/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-extensions/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,23 +814,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -997,7 +836,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1020,31 +858,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1055,19 +886,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1078,30 +905,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1114,24 +935,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1143,35 +959,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1182,23 +991,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1209,15 +1014,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1228,19 +1030,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1251,11 +1049,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1263,12 +1059,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1279,15 +1073,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1295,12 +1086,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1311,29 +1100,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1342,7 +1125,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1350,12 +1132,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1367,13 +1147,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1397,28 +1175,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1427,7 +1199,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1435,8 +1206,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1447,29 +1217,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1480,11 +1244,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1500,19 +1262,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1527,15 +1286,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1551,11 +1307,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -1570,15 +1324,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1593,16 +1345,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1617,7 +1366,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1644,29 +1392,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1675,7 +1417,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1683,12 +1424,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1699,12 +1438,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1728,32 +1465,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1762,7 +1492,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1770,8 +1499,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1782,29 +1510,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1813,7 +1535,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1821,12 +1542,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1837,12 +1556,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1866,28 +1583,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1896,7 +1607,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1904,8 +1614,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1916,11 +1625,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1935,15 +1642,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1955,36 +1659,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1996,28 +1692,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2032,15 +1722,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2051,23 +1738,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2078,19 +1760,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2101,19 +1779,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2124,15 +1798,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2140,16 +1811,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2160,15 +1829,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2179,7 +1845,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2202,20 +1867,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2226,15 +1887,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2245,56 +1903,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2305,19 +1951,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2328,7 +1970,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2347,15 +1988,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2366,11 +2004,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -2386,11 +2022,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2401,19 +2035,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2424,11 +2054,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2448,11 +2076,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2467,23 +2093,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2495,11 +2116,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2508,7 +2127,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2524,15 +2142,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2543,35 +2158,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2582,15 +2189,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -2606,16 +2210,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2626,7 +2227,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2645,15 +2245,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2664,15 +2261,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2683,11 +2277,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2696,7 +2288,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2712,7 +2303,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2720,16 +2310,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2740,11 +2327,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2753,7 +2338,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2769,20 +2353,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -2791,11 +2371,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2807,15 +2385,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2826,11 +2401,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2841,29 +2414,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2876,17 +2443,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -2906,11 +2470,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -2918,12 +2480,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -2934,16 +2494,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -2952,7 +2509,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -2960,24 +2516,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2986,7 +2537,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -2994,21 +2544,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3016,20 +2562,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3037,49 +2579,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3088,7 +2620,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3097,7 +2628,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3113,7 +2643,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3132,19 +2661,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3155,15 +2680,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3174,39 +2697,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3217,15 +2734,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3240,31 +2754,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3275,43 +2782,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3322,19 +2820,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3345,11 +2840,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3358,7 +2851,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -3374,23 +2866,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3401,47 +2888,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3452,15 +2929,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3471,15 +2945,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3490,19 +2961,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3513,11 +2980,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3525,12 +2990,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3541,15 +3004,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3557,12 +3017,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3573,40 +3031,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3630,20 +3080,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3654,27 +3100,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3685,15 +3126,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3704,11 +3142,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3723,28 +3159,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3755,23 +3185,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3782,19 +3208,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3805,7 +3227,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -3881,7 +3302,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -3938,15 +3358,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3957,31 +3374,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3992,7 +3402,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4019,7 +3428,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4146,23 +3554,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4173,15 +3576,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4192,19 +3593,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4215,17 +3612,14 @@ }, "kubernetes_extensions_DaemonSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DaemonSet", "required": true }, @@ -4251,27 +3645,22 @@ }, "kubernetes_extensions_DaemonSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4282,17 +3671,14 @@ }, "kubernetes_extensions_DaemonSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_DaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.DaemonSet" @@ -4300,7 +3686,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DaemonSetList", "required": true }, @@ -4318,15 +3703,12 @@ }, "kubernetes_extensions_DaemonSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4338,7 +3720,6 @@ }, "templateGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updateStrategy": { @@ -4354,15 +3735,12 @@ }, "kubernetes_extensions_DaemonSetStatus": { "type": "object", - "description": "", "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_DaemonSetCondition", @@ -4370,37 +3748,29 @@ } }, "currentNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberAvailable": { - "type": "integer", - "description": "" + "type": "integer" }, "numberMisscheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberReady": { - "type": "integer", - "description": "" + "type": "integer" }, "numberUnavailable": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatedNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4411,15 +3781,13 @@ }, "kubernetes_extensions_DaemonSetUpdateStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_extensions_RollingUpdateDaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.RollingUpdateDaemonSet" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4430,17 +3798,14 @@ }, "kubernetes_extensions_Deployment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -4466,7 +3831,6 @@ }, "kubernetes_extensions_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4477,20 +3841,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4501,17 +3861,14 @@ }, "kubernetes_extensions_DeploymentList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_Deployment", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.Deployment" @@ -4519,7 +3876,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentList", "required": true }, @@ -4537,23 +3893,19 @@ }, "kubernetes_extensions_DeploymentRollback": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DeploymentRollback", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "rollbackTo": { "$ref": "#/definitions/kubernetes_extensions_RollbackConfig", @@ -4561,10 +3913,8 @@ }, "updatedAnnotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -4577,27 +3927,21 @@ }, "kubernetes_extensions_DeploymentSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "rollbackTo": { "$ref": "#/definitions/kubernetes_extensions_RollbackConfig", @@ -4624,19 +3968,15 @@ }, "kubernetes_extensions_DeploymentStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_DeploymentCondition", @@ -4645,24 +3985,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4673,15 +4008,13 @@ }, "kubernetes_extensions_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_extensions_RollingUpdateDeployment", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4692,19 +4025,16 @@ }, "kubernetes_extensions_HTTPIngressPath": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_extensions_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4715,11 +4045,9 @@ }, "kubernetes_extensions_HTTPIngressRuleValue": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.HTTPIngressPath" @@ -4734,19 +4062,15 @@ }, "kubernetes_extensions_IPBlock": { "type": "object", - "description": "", "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "except": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4758,17 +4082,14 @@ }, "kubernetes_extensions_Ingress": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -4794,15 +4115,13 @@ }, "kubernetes_extensions_IngressBackend": { "type": "object", - "description": "", "properties": { "resource": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.TypedLocalObjectReference" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "servicePort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -4817,17 +4136,14 @@ }, "kubernetes_extensions_IngressList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_Ingress", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.Ingress" @@ -4835,7 +4151,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -4853,11 +4168,9 @@ }, "kubernetes_extensions_IngressRule": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressRuleValue", @@ -4872,7 +4185,6 @@ }, "kubernetes_extensions_IngressRuleValue": { "type": "object", - "description": "", "properties": { "http": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressRuleValue", @@ -4887,19 +4199,16 @@ }, "kubernetes_extensions_IngressSpec": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_extensions_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_IngressRule", @@ -4908,7 +4217,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_IngressTLS", @@ -4924,7 +4232,6 @@ }, "kubernetes_extensions_IngressStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -4939,20 +4246,16 @@ }, "kubernetes_extensions_IngressTLS": { "type": "object", - "description": "", "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4963,17 +4266,14 @@ }, "kubernetes_extensions_NetworkPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicy", "required": true }, @@ -4995,11 +4295,9 @@ }, "kubernetes_extensions_NetworkPolicyEgressRule": { "type": "object", - "description": "", "properties": { "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPort", @@ -5008,7 +4306,6 @@ }, "to": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPeer", @@ -5024,11 +4321,9 @@ }, "kubernetes_extensions_NetworkPolicyIngressRule": { "type": "object", - "description": "", "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPeer", @@ -5037,7 +4332,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPort", @@ -5053,17 +4347,14 @@ }, "kubernetes_extensions_NetworkPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.NetworkPolicy" @@ -5071,7 +4362,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicyList", "required": true }, @@ -5089,7 +4379,6 @@ }, "kubernetes_extensions_NetworkPolicyPeer": { "type": "object", - "description": "", "properties": { "ipBlock": { "$ref": "#/definitions/kubernetes_extensions_IPBlock", @@ -5112,15 +4401,13 @@ }, "kubernetes_extensions_NetworkPolicyPort": { "type": "object", - "description": "", "properties": { "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5131,11 +4418,9 @@ }, "kubernetes_extensions_NetworkPolicySpec": { "type": "object", - "description": "", "properties": { "egress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyEgressRule", @@ -5144,7 +4429,6 @@ }, "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyIngressRule", @@ -5157,11 +4441,9 @@ }, "policyTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5173,17 +4455,14 @@ }, "kubernetes_extensions_ReplicaSet": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicaSet", "required": true }, @@ -5209,27 +4488,22 @@ }, "kubernetes_extensions_ReplicaSetCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5240,17 +4514,14 @@ }, "kubernetes_extensions_ReplicaSetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_ReplicaSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.ReplicaSet" @@ -5258,7 +4529,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicaSetList", "required": true }, @@ -5276,15 +4546,12 @@ }, "kubernetes_extensions_ReplicaSetSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -5303,15 +4570,12 @@ }, "kubernetes_extensions_ReplicaSetStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_ReplicaSetCondition", @@ -5319,21 +4583,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -5344,11 +4604,9 @@ }, "kubernetes_extensions_RollbackConfig": { "type": "object", - "description": "", "properties": { "revision": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -5360,7 +4618,6 @@ }, "kubernetes_extensions_RollingUpdateDaemonSet": { "type": "object", - "description": "", "properties": { "maxUnavailable": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -5375,7 +4632,6 @@ }, "kubernetes_extensions_RollingUpdateDeployment": { "type": "object", - "description": "", "properties": { "maxSurge": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -5535,19 +4791,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -5555,7 +4808,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -5564,7 +4816,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -5577,13 +4828,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -5591,7 +4840,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -5601,20 +4849,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5622,28 +4866,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5651,16 +4889,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5669,20 +4904,16 @@ "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5692,31 +4923,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5724,20 +4949,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5745,12 +4967,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5758,16 +4978,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5776,7 +4993,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -5784,12 +5000,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5797,12 +5011,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -5810,12 +5022,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5824,25 +5034,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -5851,7 +5056,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -5859,12 +5063,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -5876,13 +5078,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -5906,28 +5106,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -5936,7 +5130,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -5944,8 +5137,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5953,26 +5145,21 @@ "containerport": { "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5981,26 +5168,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -6010,27 +5192,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -6041,13 +5218,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DaemonSet", "required": true }, @@ -6073,20 +5248,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6095,13 +5266,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_DaemonSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.DaemonSet" @@ -6109,7 +5278,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DaemonSetList", "required": true }, @@ -6123,12 +5291,10 @@ "daemonsetspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -6140,7 +5306,6 @@ }, "templateGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updateStrategy": { @@ -6153,12 +5318,10 @@ "daemonsetstatus": { "properties": { "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_DaemonSetCondition", @@ -6166,37 +5329,29 @@ } }, "currentNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberAvailable": { - "type": "integer", - "description": "" + "type": "integer" }, "numberMisscheduled": { - "type": "integer", - "description": "" + "type": "integer" }, "numberReady": { - "type": "integer", - "description": "" + "type": "integer" }, "numberUnavailable": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatedNumberScheduled": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -6208,8 +5363,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.RollingUpdateDaemonSet" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6218,41 +5372,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6261,13 +5408,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -6297,20 +5442,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6319,13 +5460,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_Deployment", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.Deployment" @@ -6333,7 +5472,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentList", "required": true }, @@ -6348,19 +5486,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DeploymentRollback", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "rollbackTo": { "$ref": "#/definitions/kubernetes_extensions_RollbackConfig", @@ -6368,10 +5503,8 @@ }, "updatedAnnotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -6381,24 +5514,19 @@ "deploymentspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "rollbackTo": { "$ref": "#/definitions/kubernetes_extensions_RollbackConfig", @@ -6422,16 +5550,13 @@ "deploymentstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_DeploymentCondition", @@ -6440,24 +5565,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -6469,8 +5589,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6479,7 +5598,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -6496,12 +5614,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -6513,12 +5629,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -6531,8 +5645,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -6548,8 +5661,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -6562,12 +5674,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -6601,25 +5711,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6628,7 +5733,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -6636,12 +5740,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -6652,12 +5754,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -6681,32 +5781,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -6715,7 +5808,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -6723,8 +5815,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6733,25 +5824,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6760,7 +5846,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -6768,12 +5853,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -6784,12 +5867,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -6813,28 +5894,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -6843,7 +5918,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -6851,8 +5925,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6860,8 +5933,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -6874,11 +5946,9 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6887,33 +5957,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6925,25 +5988,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6955,12 +6013,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6968,20 +6024,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6990,19 +6042,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7010,16 +6059,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7027,16 +6073,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7044,12 +6087,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7075,16 +6116,13 @@ "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7092,12 +6130,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7105,12 +6141,10 @@ "httpgetaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -7118,16 +6152,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7135,12 +6167,10 @@ "httpheader": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7152,12 +6182,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7166,7 +6194,6 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.HTTPIngressPath" @@ -7181,40 +6208,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7223,13 +6241,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -7255,8 +6271,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.TypedLocalObjectReference" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "servicePort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7269,13 +6284,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_Ingress", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.Ingress" @@ -7283,7 +6296,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -7297,8 +6309,7 @@ "ingressrule": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_extensions_HTTPIngressRuleValue", @@ -7323,12 +6334,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_IngressRule", @@ -7337,7 +6346,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_IngressTLS", @@ -7360,16 +6368,13 @@ "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7377,16 +6382,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -7395,16 +6397,13 @@ "ipblock": { "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "except": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7413,53 +6412,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7467,16 +6455,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7485,7 +6470,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -7494,10 +6478,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -7507,20 +6489,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7543,13 +6521,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -7557,7 +6533,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -7571,21 +6546,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7593,54 +6564,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7648,12 +6608,10 @@ "loadbalanceringress": { "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7662,7 +6620,6 @@ "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -7675,8 +6632,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7684,24 +6640,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7714,13 +6666,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicy", "required": true }, @@ -7739,7 +6689,6 @@ "properties": { "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPort", @@ -7748,7 +6697,6 @@ }, "to": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPeer", @@ -7762,7 +6710,6 @@ "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPeer", @@ -7771,7 +6718,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyPort", @@ -7785,13 +6731,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.NetworkPolicy" @@ -7799,7 +6743,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicyList", "required": true }, @@ -7834,8 +6777,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7844,7 +6786,6 @@ "properties": { "egress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyEgressRule", @@ -7853,7 +6794,6 @@ }, "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_NetworkPolicyIngressRule", @@ -7866,11 +6806,9 @@ }, "policyTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7879,16 +6817,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7897,7 +6832,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -7915,7 +6849,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -7927,20 +6860,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7950,7 +6879,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -7959,7 +6887,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -7972,12 +6899,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7986,16 +6911,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -8003,7 +6925,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -8012,34 +6933,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -8047,18 +6961,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -8066,16 +6977,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8083,32 +6991,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8116,28 +7017,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8149,30 +7044,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -8183,11 +7072,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -8203,16 +7090,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8233,12 +7117,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8246,12 +7128,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8260,7 +7140,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -8269,7 +7148,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -8287,16 +7165,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8305,7 +7180,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -8314,7 +7188,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -8328,16 +7201,13 @@ "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -8346,11 +7216,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8359,12 +7227,10 @@ "poddnsconfigoption": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8372,8 +7238,7 @@ "podreadinessgate": { "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8382,25 +7247,20 @@ "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -8413,17 +7273,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -8441,7 +7298,6 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -8449,12 +7305,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -8465,16 +7319,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -8483,7 +7334,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -8491,24 +7341,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -8517,7 +7362,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -8525,21 +7369,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -8547,20 +7387,16 @@ "existingJavaType": "java.util.Map\u003cString, Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -8568,49 +7404,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -8619,7 +7445,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -8628,7 +7453,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -8654,16 +7478,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8671,12 +7492,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8688,8 +7507,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8701,32 +7519,27 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8734,12 +7547,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -8751,8 +7562,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8760,28 +7570,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8792,40 +7596,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8834,13 +7630,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ReplicaSet", "required": true }, @@ -8866,20 +7660,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8888,13 +7678,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "extensions/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_extensions_ReplicaSet", "existingJavaType": "io.fabric8.kubernetes.api.model.extensions.ReplicaSet" @@ -8902,7 +7690,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ReplicaSetList", "required": true }, @@ -8916,12 +7703,10 @@ "replicasetspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -8937,12 +7722,10 @@ "replicasetstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_extensions_ReplicaSetCondition", @@ -8950,21 +7733,17 @@ } }, "fullyLabeledReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8972,16 +7751,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8990,7 +7767,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -8999,7 +7775,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -9013,7 +7788,6 @@ "properties": { "revision": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -9045,10 +7819,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9057,44 +7829,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9102,12 +7865,10 @@ "seccompprofile": { "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9115,12 +7876,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9128,16 +7887,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9146,7 +7902,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -9154,12 +7909,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9167,12 +7920,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -9180,12 +7931,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9193,37 +7942,30 @@ "securitycontext": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -9244,20 +7986,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9265,12 +8003,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9278,17 +8014,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9297,13 +8030,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -9311,25 +8042,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9337,16 +8064,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9355,7 +8079,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -9363,24 +8086,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9388,24 +8106,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9413,12 +8127,10 @@ "sysctl": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9426,8 +8138,7 @@ "tcpsocketaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -9439,8 +8150,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9448,25 +8158,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9478,16 +8183,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9495,16 +8197,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9512,12 +8211,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9526,26 +8223,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -9628,7 +8320,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -9682,12 +8373,10 @@ "volumedevice": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9695,28 +8384,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9866,20 +8549,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9891,8 +8570,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9900,16 +8578,13 @@ "windowssecuritycontextoptions": { "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/kube-schema.json index c66b403bb25..bee42bf3acd 100644 --- a/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/kube-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,30 +74,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -120,45 +104,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -169,11 +145,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -185,7 +159,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -194,23 +167,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,15 +190,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -240,17 +206,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -258,7 +221,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -276,24 +238,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -304,57 +261,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -365,27 +310,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -400,20 +340,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -421,7 +357,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -430,34 +365,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -465,18 +393,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -484,16 +409,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -504,31 +426,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -539,7 +454,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -548,34 +462,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -588,15 +495,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -607,14 +511,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -626,15 +527,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -645,17 +543,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -663,25 +558,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -692,19 +583,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -715,11 +602,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -727,24 +612,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -755,11 +635,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -770,15 +648,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -789,30 +664,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -825,7 +694,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -834,7 +702,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -843,43 +710,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -890,35 +747,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -929,15 +778,12 @@ }, "kubernetes_metrics_v1beta1_ContainerMetrics": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "usage": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -953,17 +799,14 @@ }, "kubernetes_metrics_v1beta1_NodeMetrics": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NodeMetrics", "required": true }, @@ -977,7 +820,6 @@ }, "usage": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -998,17 +840,14 @@ }, "kubernetes_metrics_v1beta1_NodeMetricsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_NodeMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.NodeMetrics" @@ -1016,7 +855,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeMetricsList", "required": true }, @@ -1034,17 +872,14 @@ }, "kubernetes_metrics_v1beta1_PodMetrics": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_ContainerMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.ContainerMetrics" @@ -1052,7 +887,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMetrics", "required": true }, @@ -1078,17 +912,14 @@ }, "kubernetes_metrics_v1beta1_PodMetricsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_PodMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.PodMetrics" @@ -1096,7 +927,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMetricsList", "required": true }, @@ -1114,11 +944,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/validation-schema.json index 188dc90f412..0da4b7a67e8 100644 --- a/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-metrics/src/main/resources/schema/validation-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,30 +74,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -120,45 +104,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -169,11 +145,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -185,7 +159,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -194,23 +167,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,15 +190,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -240,17 +206,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -258,7 +221,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -276,24 +238,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -304,57 +261,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -365,27 +310,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -400,20 +340,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -421,7 +357,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -430,34 +365,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -465,18 +393,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -484,16 +409,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -504,31 +426,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -539,7 +454,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -548,34 +462,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -588,15 +495,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -607,14 +511,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -626,15 +527,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -645,17 +543,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -663,25 +558,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -692,19 +583,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -715,11 +602,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -727,24 +612,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -755,11 +635,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -770,15 +648,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -789,30 +664,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -825,7 +694,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -834,7 +702,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -843,43 +710,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -890,35 +747,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -929,15 +778,12 @@ }, "kubernetes_metrics_v1beta1_ContainerMetrics": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "usage": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -953,17 +799,14 @@ }, "kubernetes_metrics_v1beta1_NodeMetrics": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NodeMetrics", "required": true }, @@ -977,7 +820,6 @@ }, "usage": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -998,17 +840,14 @@ }, "kubernetes_metrics_v1beta1_NodeMetricsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_NodeMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.NodeMetrics" @@ -1016,7 +855,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeMetricsList", "required": true }, @@ -1034,17 +872,14 @@ }, "kubernetes_metrics_v1beta1_PodMetrics": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_ContainerMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.ContainerMetrics" @@ -1052,7 +887,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMetrics", "required": true }, @@ -1078,17 +912,14 @@ }, "kubernetes_metrics_v1beta1_PodMetricsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_PodMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.PodMetrics" @@ -1096,7 +927,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMetricsList", "required": true }, @@ -1114,11 +944,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1225,19 +1053,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1245,7 +1070,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1254,7 +1078,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1267,13 +1090,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1281,7 +1102,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1291,12 +1111,10 @@ "containermetrics": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "usage": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -1310,26 +1128,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1340,41 +1153,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1383,7 +1189,6 @@ "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1396,19 +1201,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1416,12 +1218,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1432,40 +1232,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1474,13 +1265,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1488,7 +1277,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1502,21 +1290,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1524,54 +1308,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1579,24 +1352,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1609,13 +1378,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NodeMetrics", "required": true }, @@ -1629,7 +1396,6 @@ }, "usage": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -1647,13 +1413,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_NodeMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.NodeMetrics" @@ -1661,7 +1425,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NodeMetricsList", "required": true }, @@ -1676,16 +1439,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1693,7 +1453,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1702,34 +1461,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1737,18 +1489,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1756,16 +1505,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1773,32 +1519,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1806,28 +1545,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1839,30 +1572,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1873,13 +1600,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_ContainerMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.ContainerMetrics" @@ -1887,7 +1612,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMetrics", "required": true }, @@ -1910,13 +1634,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "metrics.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_metrics_v1beta1_PodMetrics", "existingJavaType": "io.fabric8.kubernetes.api.model.metrics.v1beta1.PodMetrics" @@ -1924,7 +1646,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMetricsList", "required": true }, @@ -1938,12 +1659,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1951,8 +1670,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1964,10 +1682,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1976,12 +1692,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1990,13 +1704,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -2004,25 +1716,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2030,16 +1738,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2048,7 +1753,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -2056,24 +1760,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2081,8 +1780,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2090,12 +1788,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2104,26 +1800,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/kube-schema.json index 8f5bb5d6d43..83237695697 100644 --- a/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,15 +814,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -989,11 +830,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -1009,35 +848,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1048,19 +879,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1071,19 +898,16 @@ }, "kubernetes_networking_v1_HTTPIngressPath": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_networking_v1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1094,11 +918,9 @@ }, "kubernetes_networking_v1_HTTPIngressRuleValue": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.HTTPIngressPath" @@ -1113,19 +935,15 @@ }, "kubernetes_networking_v1_IPBlock": { "type": "object", - "description": "", "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "except": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1137,17 +955,14 @@ }, "kubernetes_networking_v1_Ingress": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -1173,7 +988,6 @@ }, "kubernetes_networking_v1_IngressBackend": { "type": "object", - "description": "", "properties": { "resource": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", @@ -1192,17 +1006,14 @@ }, "kubernetes_networking_v1_IngressClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressClass", "required": true }, @@ -1223,17 +1034,14 @@ }, "kubernetes_networking_v1_IngressClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressClass", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressClass" @@ -1241,7 +1049,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressClassList", "required": true }, @@ -1259,11 +1066,9 @@ }, "kubernetes_networking_v1_IngressClassSpec": { "type": "object", - "description": "", "properties": { "controller": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", @@ -1278,17 +1083,14 @@ }, "kubernetes_networking_v1_IngressList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_Ingress", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.Ingress" @@ -1296,7 +1098,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -1314,11 +1115,9 @@ }, "kubernetes_networking_v1_IngressRule": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_networking_v1_HTTPIngressRuleValue", @@ -1333,7 +1132,6 @@ }, "kubernetes_networking_v1_IngressRuleValue": { "type": "object", - "description": "", "properties": { "http": { "$ref": "#/definitions/kubernetes_networking_v1_HTTPIngressRuleValue", @@ -1348,11 +1146,9 @@ }, "kubernetes_networking_v1_IngressServiceBackend": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_networking_v1_ServiceBackendPort", @@ -1367,19 +1163,16 @@ }, "kubernetes_networking_v1_IngressSpec": { "type": "object", - "description": "", "properties": { "defaultBackend": { "$ref": "#/definitions/kubernetes_networking_v1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressRule", @@ -1388,7 +1181,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressTLS", @@ -1404,7 +1196,6 @@ }, "kubernetes_networking_v1_IngressStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -1419,20 +1210,16 @@ }, "kubernetes_networking_v1_IngressTLS": { "type": "object", - "description": "", "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1443,17 +1230,14 @@ }, "kubernetes_networking_v1_NetworkPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicy", "required": true }, @@ -1475,11 +1259,9 @@ }, "kubernetes_networking_v1_NetworkPolicyEgressRule": { "type": "object", - "description": "", "properties": { "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPort", @@ -1488,7 +1270,6 @@ }, "to": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPeer", @@ -1504,11 +1285,9 @@ }, "kubernetes_networking_v1_NetworkPolicyIngressRule": { "type": "object", - "description": "", "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPeer", @@ -1517,7 +1296,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPort", @@ -1533,17 +1311,14 @@ }, "kubernetes_networking_v1_NetworkPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.NetworkPolicy" @@ -1551,7 +1326,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicyList", "required": true }, @@ -1569,7 +1343,6 @@ }, "kubernetes_networking_v1_NetworkPolicyPeer": { "type": "object", - "description": "", "properties": { "ipBlock": { "$ref": "#/definitions/kubernetes_networking_v1_IPBlock", @@ -1592,15 +1365,13 @@ }, "kubernetes_networking_v1_NetworkPolicyPort": { "type": "object", - "description": "", "properties": { "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1611,11 +1382,9 @@ }, "kubernetes_networking_v1_NetworkPolicySpec": { "type": "object", - "description": "", "properties": { "egress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyEgressRule", @@ -1624,7 +1393,6 @@ }, "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyIngressRule", @@ -1637,11 +1405,9 @@ }, "policyTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1653,15 +1419,12 @@ }, "kubernetes_networking_v1_ServiceBackendPort": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "number": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1672,19 +1435,16 @@ }, "kubernetes_networking_v1beta1_HTTPIngressPath": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1695,11 +1455,9 @@ }, "kubernetes_networking_v1beta1_HTTPIngressRuleValue": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.HTTPIngressPath" @@ -1714,17 +1472,14 @@ }, "kubernetes_networking_v1beta1_Ingress": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -1750,15 +1505,13 @@ }, "kubernetes_networking_v1beta1_IngressBackend": { "type": "object", - "description": "", "properties": { "resource": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.TypedLocalObjectReference" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "servicePort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1773,17 +1526,14 @@ }, "kubernetes_networking_v1beta1_IngressClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressClass", "required": true }, @@ -1804,17 +1554,14 @@ }, "kubernetes_networking_v1beta1_IngressClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressClass", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressClass" @@ -1822,7 +1569,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressClassList", "required": true }, @@ -1840,11 +1586,9 @@ }, "kubernetes_networking_v1beta1_IngressClassSpec": { "type": "object", - "description": "", "properties": { "controller": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", @@ -1859,17 +1603,14 @@ }, "kubernetes_networking_v1beta1_IngressList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_Ingress", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.Ingress" @@ -1877,7 +1618,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -1895,11 +1635,9 @@ }, "kubernetes_networking_v1beta1_IngressRule": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_networking_v1beta1_HTTPIngressRuleValue", @@ -1914,7 +1652,6 @@ }, "kubernetes_networking_v1beta1_IngressRuleValue": { "type": "object", - "description": "", "properties": { "http": { "$ref": "#/definitions/kubernetes_networking_v1beta1_HTTPIngressRuleValue", @@ -1929,19 +1666,16 @@ }, "kubernetes_networking_v1beta1_IngressSpec": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressRule", @@ -1950,7 +1684,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressTLS", @@ -1966,7 +1699,6 @@ }, "kubernetes_networking_v1beta1_IngressStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -1981,20 +1713,16 @@ }, "kubernetes_networking_v1beta1_IngressTLS": { "type": "object", - "description": "", "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/validation-schema.json index 861b48aeb11..3a6bfe409ca 100644 --- a/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-networking/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,15 +814,12 @@ }, "kubernetes_core_LoadBalancerIngress": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -989,11 +830,9 @@ }, "kubernetes_core_LoadBalancerStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -1009,35 +848,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1048,19 +879,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1071,19 +898,16 @@ }, "kubernetes_networking_v1_HTTPIngressPath": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_networking_v1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1094,11 +918,9 @@ }, "kubernetes_networking_v1_HTTPIngressRuleValue": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.HTTPIngressPath" @@ -1113,19 +935,15 @@ }, "kubernetes_networking_v1_IPBlock": { "type": "object", - "description": "", "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "except": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1137,17 +955,14 @@ }, "kubernetes_networking_v1_Ingress": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -1173,7 +988,6 @@ }, "kubernetes_networking_v1_IngressBackend": { "type": "object", - "description": "", "properties": { "resource": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", @@ -1192,17 +1006,14 @@ }, "kubernetes_networking_v1_IngressClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressClass", "required": true }, @@ -1223,17 +1034,14 @@ }, "kubernetes_networking_v1_IngressClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressClass", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressClass" @@ -1241,7 +1049,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressClassList", "required": true }, @@ -1259,11 +1066,9 @@ }, "kubernetes_networking_v1_IngressClassSpec": { "type": "object", - "description": "", "properties": { "controller": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", @@ -1278,17 +1083,14 @@ }, "kubernetes_networking_v1_IngressList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_Ingress", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.Ingress" @@ -1296,7 +1098,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -1314,11 +1115,9 @@ }, "kubernetes_networking_v1_IngressRule": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_networking_v1_HTTPIngressRuleValue", @@ -1333,7 +1132,6 @@ }, "kubernetes_networking_v1_IngressRuleValue": { "type": "object", - "description": "", "properties": { "http": { "$ref": "#/definitions/kubernetes_networking_v1_HTTPIngressRuleValue", @@ -1348,11 +1146,9 @@ }, "kubernetes_networking_v1_IngressServiceBackend": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_networking_v1_ServiceBackendPort", @@ -1367,19 +1163,16 @@ }, "kubernetes_networking_v1_IngressSpec": { "type": "object", - "description": "", "properties": { "defaultBackend": { "$ref": "#/definitions/kubernetes_networking_v1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressRule", @@ -1388,7 +1181,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressTLS", @@ -1404,7 +1196,6 @@ }, "kubernetes_networking_v1_IngressStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -1419,20 +1210,16 @@ }, "kubernetes_networking_v1_IngressTLS": { "type": "object", - "description": "", "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1443,17 +1230,14 @@ }, "kubernetes_networking_v1_NetworkPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicy", "required": true }, @@ -1475,11 +1259,9 @@ }, "kubernetes_networking_v1_NetworkPolicyEgressRule": { "type": "object", - "description": "", "properties": { "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPort", @@ -1488,7 +1270,6 @@ }, "to": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPeer", @@ -1504,11 +1285,9 @@ }, "kubernetes_networking_v1_NetworkPolicyIngressRule": { "type": "object", - "description": "", "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPeer", @@ -1517,7 +1296,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPort", @@ -1533,17 +1311,14 @@ }, "kubernetes_networking_v1_NetworkPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.NetworkPolicy" @@ -1551,7 +1326,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicyList", "required": true }, @@ -1569,7 +1343,6 @@ }, "kubernetes_networking_v1_NetworkPolicyPeer": { "type": "object", - "description": "", "properties": { "ipBlock": { "$ref": "#/definitions/kubernetes_networking_v1_IPBlock", @@ -1592,15 +1365,13 @@ }, "kubernetes_networking_v1_NetworkPolicyPort": { "type": "object", - "description": "", "properties": { "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1611,11 +1382,9 @@ }, "kubernetes_networking_v1_NetworkPolicySpec": { "type": "object", - "description": "", "properties": { "egress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyEgressRule", @@ -1624,7 +1393,6 @@ }, "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyIngressRule", @@ -1637,11 +1405,9 @@ }, "policyTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1653,15 +1419,12 @@ }, "kubernetes_networking_v1_ServiceBackendPort": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "number": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1672,19 +1435,16 @@ }, "kubernetes_networking_v1beta1_HTTPIngressPath": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1695,11 +1455,9 @@ }, "kubernetes_networking_v1beta1_HTTPIngressRuleValue": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.HTTPIngressPath" @@ -1714,17 +1472,14 @@ }, "kubernetes_networking_v1beta1_Ingress": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -1750,15 +1505,13 @@ }, "kubernetes_networking_v1beta1_IngressBackend": { "type": "object", - "description": "", "properties": { "resource": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.TypedLocalObjectReference" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "servicePort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1773,17 +1526,14 @@ }, "kubernetes_networking_v1beta1_IngressClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressClass", "required": true }, @@ -1804,17 +1554,14 @@ }, "kubernetes_networking_v1beta1_IngressClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressClass", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressClass" @@ -1822,7 +1569,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressClassList", "required": true }, @@ -1840,11 +1586,9 @@ }, "kubernetes_networking_v1beta1_IngressClassSpec": { "type": "object", - "description": "", "properties": { "controller": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", @@ -1859,17 +1603,14 @@ }, "kubernetes_networking_v1beta1_IngressList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_Ingress", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.Ingress" @@ -1877,7 +1618,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -1895,11 +1635,9 @@ }, "kubernetes_networking_v1beta1_IngressRule": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_networking_v1beta1_HTTPIngressRuleValue", @@ -1914,7 +1652,6 @@ }, "kubernetes_networking_v1beta1_IngressRuleValue": { "type": "object", - "description": "", "properties": { "http": { "$ref": "#/definitions/kubernetes_networking_v1beta1_HTTPIngressRuleValue", @@ -1929,19 +1666,16 @@ }, "kubernetes_networking_v1beta1_IngressSpec": { "type": "object", - "description": "", "properties": { "backend": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressBackend", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressRule", @@ -1950,7 +1684,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressTLS", @@ -1966,7 +1699,6 @@ }, "kubernetes_networking_v1beta1_IngressStatus": { "type": "object", - "description": "", "properties": { "loadBalancer": { "$ref": "#/definitions/kubernetes_core_LoadBalancerStatus", @@ -1981,20 +1713,16 @@ }, "kubernetes_networking_v1beta1_IngressTLS": { "type": "object", - "description": "", "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2125,19 +1853,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -2145,7 +1870,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -2154,7 +1878,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -2167,13 +1890,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -2181,7 +1902,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -2192,26 +1912,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -2222,41 +1937,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2268,19 +1976,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2288,12 +1993,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2301,16 +2004,14 @@ "httpingresspath": { "properties": { "backend": { - "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressBackend", - "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressBackend" + "$ref": "#/definitions/kubernetes_networking_v1_IngressBackend", + "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressBackend" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "pathType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2319,7 +2020,6 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1beta1_HTTPIngressPath", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.HTTPIngressPath" @@ -2334,40 +2034,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2376,13 +2067,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "networking.k8s.io/v1", + "default": "networking.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Ingress", "required": true }, @@ -2391,12 +2080,12 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "spec": { - "$ref": "#/definitions/kubernetes_networking_v1_IngressSpec", - "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressSpec" + "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressSpec", + "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressSpec" }, "status": { - "$ref": "#/definitions/kubernetes_networking_v1_IngressStatus", - "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressStatus" + "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressStatus", + "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressStatus" } }, "additionalProperties": true @@ -2407,9 +2096,12 @@ "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.TypedLocalObjectReference" }, - "service": { - "$ref": "#/definitions/kubernetes_networking_v1_IngressServiceBackend", - "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressServiceBackend" + "serviceName": { + "type": "string" + }, + "servicePort": { + "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", + "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" } }, "additionalProperties": true @@ -2418,13 +2110,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "networking.k8s.io/v1", + "default": "networking.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressClass", "required": true }, @@ -2433,8 +2123,8 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "spec": { - "$ref": "#/definitions/kubernetes_networking_v1_IngressClassSpec", - "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressClassSpec" + "$ref": "#/definitions/kubernetes_networking_v1beta1_IngressClassSpec", + "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.IngressClassSpec" } }, "additionalProperties": true @@ -2443,13 +2133,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressClass", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressClass" @@ -2457,7 +2145,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressClassList", "required": true }, @@ -2471,8 +2158,7 @@ "ingressclassspec": { "properties": { "controller": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "$ref": "#/definitions/kubernetes_core_TypedLocalObjectReference", @@ -2485,21 +2171,18 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "networking.k8s.io/v1beta1", + "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { - "$ref": "#/definitions/kubernetes_networking_v1beta1_Ingress", - "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1beta1.Ingress" + "$ref": "#/definitions/kubernetes_networking_v1_Ingress", + "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.Ingress" } }, "kind": { "type": "string", - "description": "", "default": "IngressList", "required": true }, @@ -2513,8 +2196,7 @@ "ingressrule": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "http": { "$ref": "#/definitions/kubernetes_networking_v1_HTTPIngressRuleValue", @@ -2535,8 +2217,7 @@ "ingressservicebackend": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_networking_v1_ServiceBackendPort", @@ -2552,12 +2233,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.IngressBackend" }, "ingressClassName": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressRule", @@ -2566,7 +2245,6 @@ }, "tls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_IngressTLS", @@ -2589,16 +2267,13 @@ "properties": { "hosts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2606,16 +2281,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2624,16 +2296,13 @@ "ipblock": { "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "except": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2643,7 +2312,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -2652,10 +2320,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -2665,20 +2331,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2688,13 +2350,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -2702,7 +2362,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -2716,21 +2375,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2738,54 +2393,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -2793,12 +2437,10 @@ "loadbalanceringress": { "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2807,7 +2449,6 @@ "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LoadBalancerIngress", @@ -2820,24 +2461,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2850,13 +2487,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicy", "required": true }, @@ -2875,7 +2510,6 @@ "properties": { "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPort", @@ -2884,7 +2518,6 @@ }, "to": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPeer", @@ -2898,7 +2531,6 @@ "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPeer", @@ -2907,7 +2539,6 @@ }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyPort", @@ -2921,13 +2552,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "networking.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.networking.v1.NetworkPolicy" @@ -2935,7 +2564,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkPolicyList", "required": true }, @@ -2970,8 +2598,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2980,7 +2607,6 @@ "properties": { "egress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyEgressRule", @@ -2989,7 +2615,6 @@ }, "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_networking_v1_NetworkPolicyIngressRule", @@ -3002,11 +2627,9 @@ }, "policyTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3016,16 +2639,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3033,7 +2653,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -3042,34 +2661,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -3077,18 +2689,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -3096,16 +2705,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3113,32 +2719,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3146,28 +2745,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3179,30 +2772,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -3212,12 +2799,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3225,8 +2810,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3238,10 +2822,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3250,12 +2832,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3263,12 +2843,10 @@ "servicebackendport": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "number": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -3277,13 +2855,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -3291,25 +2867,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3317,16 +2889,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3335,7 +2904,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -3343,24 +2911,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3368,8 +2931,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3377,16 +2939,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3394,12 +2953,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3408,26 +2965,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/kube-schema.json index 055dfc021a8..c9e3073779f 100644 --- a/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/kube-schema.json @@ -5,7 +5,6 @@ "definitions": { "k8s_io_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "RawExtension", "javaInterfaces": [ @@ -14,7 +13,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -23,17 +21,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "RawExtension" @@ -41,7 +36,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -59,24 +53,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -87,27 +76,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -122,20 +106,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -143,7 +123,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -152,34 +131,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -187,18 +159,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -206,16 +175,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -226,31 +192,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -261,17 +220,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -279,25 +235,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -308,19 +260,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -331,11 +279,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -343,24 +289,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -371,11 +312,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -386,15 +325,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -405,43 +341,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -452,35 +378,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -491,28 +409,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -523,11 +435,9 @@ }, "kubernetes_node_v1alpha_Overhead": { "type": "object", - "description": "", "properties": { "podFixed": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -543,17 +453,14 @@ }, "kubernetes_node_v1alpha_RuntimeClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RuntimeClass", "required": true }, @@ -574,17 +481,14 @@ }, "kubernetes_node_v1alpha_RuntimeClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_node_v1alpha_RuntimeClass", "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1alpha1.RuntimeClass" @@ -592,7 +496,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RuntimeClassList", "required": true }, @@ -610,15 +513,13 @@ }, "kubernetes_node_v1alpha_RuntimeClassSpec": { "type": "object", - "description": "", "properties": { "overhead": { "$ref": "#/definitions/kubernetes_node_v1alpha_Overhead", "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1alpha1.Overhead" }, "runtimeHandler": { - "type": "string", - "description": "" + "type": "string" }, "scheduling": { "$ref": "#/definitions/kubernetes_node_v1alpha_Scheduling", @@ -633,20 +534,16 @@ }, "kubernetes_node_v1alpha_Scheduling": { "type": "object", - "description": "", "properties": { "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -662,11 +559,9 @@ }, "kubernetes_node_v1beta1_Overhead": { "type": "object", - "description": "", "properties": { "podFixed": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -682,21 +577,17 @@ }, "kubernetes_node_v1beta1_RuntimeClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1beta1", "required": true }, "handler": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "RuntimeClass", "required": true }, @@ -721,17 +612,14 @@ }, "kubernetes_node_v1beta1_RuntimeClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_node_v1beta1_RuntimeClass", "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1beta1.RuntimeClass" @@ -739,7 +627,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RuntimeClassList", "required": true }, @@ -757,20 +644,16 @@ }, "kubernetes_node_v1beta1_Scheduling": { "type": "object", - "description": "", "properties": { "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -786,11 +669,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/validation-schema.json index 6a8641f49dd..0235cb99b14 100644 --- a/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-node/src/main/resources/schema/validation-schema.json @@ -5,7 +5,6 @@ "definitions": { "k8s_io_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "RawExtension", "javaInterfaces": [ @@ -14,7 +13,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -23,17 +21,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "RawExtension" @@ -41,7 +36,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -59,24 +53,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -87,27 +76,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -122,20 +106,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -143,7 +123,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -152,34 +131,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -187,18 +159,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -206,16 +175,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -226,31 +192,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -261,17 +220,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -279,25 +235,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -308,19 +260,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -331,11 +279,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -343,24 +289,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -371,11 +312,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -386,15 +325,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -405,43 +341,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -452,35 +378,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -491,28 +409,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -523,11 +435,9 @@ }, "kubernetes_node_v1alpha_Overhead": { "type": "object", - "description": "", "properties": { "podFixed": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -543,17 +453,14 @@ }, "kubernetes_node_v1alpha_RuntimeClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RuntimeClass", "required": true }, @@ -574,17 +481,14 @@ }, "kubernetes_node_v1alpha_RuntimeClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_node_v1alpha_RuntimeClass", "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1alpha1.RuntimeClass" @@ -592,7 +496,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RuntimeClassList", "required": true }, @@ -610,15 +513,13 @@ }, "kubernetes_node_v1alpha_RuntimeClassSpec": { "type": "object", - "description": "", "properties": { "overhead": { "$ref": "#/definitions/kubernetes_node_v1alpha_Overhead", "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1alpha1.Overhead" }, "runtimeHandler": { - "type": "string", - "description": "" + "type": "string" }, "scheduling": { "$ref": "#/definitions/kubernetes_node_v1alpha_Scheduling", @@ -633,20 +534,16 @@ }, "kubernetes_node_v1alpha_Scheduling": { "type": "object", - "description": "", "properties": { "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -662,11 +559,9 @@ }, "kubernetes_node_v1beta1_Overhead": { "type": "object", - "description": "", "properties": { "podFixed": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -682,21 +577,17 @@ }, "kubernetes_node_v1beta1_RuntimeClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1beta1", "required": true }, "handler": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "RuntimeClass", "required": true }, @@ -721,17 +612,14 @@ }, "kubernetes_node_v1beta1_RuntimeClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_node_v1beta1_RuntimeClass", "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1beta1.RuntimeClass" @@ -739,7 +627,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RuntimeClassList", "required": true }, @@ -757,20 +644,16 @@ }, "kubernetes_node_v1beta1_Scheduling": { "type": "object", - "description": "", "properties": { "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -786,11 +669,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -855,40 +736,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -897,13 +769,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "RawExtension" @@ -911,7 +781,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -925,21 +794,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -947,24 +812,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -977,16 +838,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -994,7 +852,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1003,34 +860,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1038,18 +888,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1057,16 +904,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1074,32 +918,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1108,7 +945,6 @@ "properties": { "podFixed": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -1121,28 +957,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1150,8 +980,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1163,17 +992,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", - "default": "node.k8s.io/v1beta1", + "default": "node.k8s.io/v1alpha1", "required": true }, - "handler": { - "type": "string", - "description": "" - }, "kind": { "type": "string", - "description": "", "default": "RuntimeClass", "required": true }, @@ -1181,13 +1004,9 @@ "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, - "overhead": { - "$ref": "#/definitions/kubernetes_node_v1beta1_Overhead", - "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1beta1.Overhead" - }, - "scheduling": { - "$ref": "#/definitions/kubernetes_node_v1beta1_Scheduling", - "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1beta1.Scheduling" + "spec": { + "$ref": "#/definitions/kubernetes_node_v1alpha_RuntimeClassSpec", + "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1alpha1.RuntimeClassSpec" } }, "additionalProperties": true @@ -1196,13 +1015,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "node.k8s.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_node_v1alpha_RuntimeClass", "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1alpha1.RuntimeClass" @@ -1210,7 +1027,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RuntimeClassList", "required": true }, @@ -1228,8 +1044,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.node.v1alpha1.Overhead" }, "runtimeHandler": { - "type": "string", - "description": "" + "type": "string" }, "scheduling": { "$ref": "#/definitions/kubernetes_node_v1alpha_Scheduling", @@ -1242,16 +1057,13 @@ "properties": { "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -1265,13 +1077,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1279,25 +1089,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1305,16 +1111,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1323,7 +1126,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -1331,24 +1133,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1356,8 +1153,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1365,25 +1161,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1391,12 +1182,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/kube-schema.json index edf124121e5..3f0f84928f4 100644 --- a/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,35 +814,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1009,23 +845,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1036,11 +867,9 @@ }, "kubernetes_policy_AllowedCSIDriver": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1051,11 +880,9 @@ }, "kubernetes_policy_AllowedFlexVolume": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1066,15 +893,12 @@ }, "kubernetes_policy_AllowedHostPath": { "type": "object", - "description": "", "properties": { "pathPrefix": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1085,11 +909,9 @@ }, "kubernetes_policy_Eviction": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, @@ -1099,7 +921,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Eviction", "required": true }, @@ -1117,11 +938,9 @@ }, "kubernetes_policy_FSGroupStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1129,8 +948,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1141,15 +959,12 @@ }, "kubernetes_policy_HostPortRange": { "type": "object", - "description": "", "properties": { "max": { - "type": "integer", - "description": "" + "type": "integer" }, "min": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1160,16 +975,13 @@ }, "kubernetes_policy_IDRange": { "type": "object", - "description": "", "properties": { "max": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "min": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1181,17 +993,14 @@ }, "kubernetes_policy_PodDisruptionBudget": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodDisruptionBudget", "required": true }, @@ -1217,17 +1026,14 @@ }, "kubernetes_policy_PodDisruptionBudgetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_policy_PodDisruptionBudget", "existingJavaType": "io.fabric8.kubernetes.api.model.policy.PodDisruptionBudget" @@ -1235,7 +1041,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodDisruptionBudgetList", "required": true }, @@ -1253,7 +1058,6 @@ }, "kubernetes_policy_PodDisruptionBudgetSpec": { "type": "object", - "description": "", "properties": { "maxUnavailable": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1276,19 +1080,15 @@ }, "kubernetes_policy_PodDisruptionBudgetStatus": { "type": "object", - "description": "", "properties": { "currentHealthy": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredHealthy": { - "type": "integer", - "description": "" + "type": "integer" }, "disruptedPods": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" @@ -1296,16 +1096,13 @@ "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "disruptionsAllowed": { - "type": "integer", - "description": "" + "type": "integer" }, "expectedPods": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1317,17 +1114,14 @@ }, "kubernetes_policy_PodSecurityPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicy", "required": true }, @@ -1348,17 +1142,14 @@ }, "kubernetes_policy_PodSecurityPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_policy_PodSecurityPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.policy.PodSecurityPolicy" @@ -1366,7 +1157,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicyList", "required": true }, @@ -1384,15 +1174,12 @@ }, "kubernetes_policy_PodSecurityPolicySpec": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedCSIDrivers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedCSIDriver", @@ -1401,16 +1188,13 @@ }, "allowedCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedFlexVolumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedFlexVolume", @@ -1419,7 +1203,6 @@ }, "allowedHostPaths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedHostPath", @@ -1428,42 +1211,33 @@ }, "allowedProcMountTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedUnsafeSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAddCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAllowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forbiddenSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fsGroup": { @@ -1471,20 +1245,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.policy.FSGroupStrategyOptions" }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPorts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_HostPortRange", @@ -1492,20 +1262,16 @@ } }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requiredDropCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "runAsGroup": { @@ -1530,11 +1296,9 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1546,11 +1310,9 @@ }, "kubernetes_policy_RunAsGroupStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1558,8 +1320,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1570,11 +1331,9 @@ }, "kubernetes_policy_RunAsUserStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1582,8 +1341,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1594,19 +1352,15 @@ }, "kubernetes_policy_RuntimeClassStrategyOptions": { "type": "object", - "description": "", "properties": { "allowedRuntimeClassNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultRuntimeClassName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1617,11 +1371,9 @@ }, "kubernetes_policy_SELinuxStrategyOptions": { "type": "object", - "description": "", "properties": { "rule": { - "type": "string", - "description": "" + "type": "string" }, "seLinuxOptions": { "$ref": "#/definitions/kubernetes_core_SELinuxOptions", @@ -1636,11 +1388,9 @@ }, "kubernetes_policy_SupplementalGroupsStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1648,8 +1398,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/validation-schema.json index 4994acd3553..faf1612c165 100644 --- a/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-policy/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,19 +757,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -923,43 +777,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -970,35 +814,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1009,23 +845,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1036,11 +867,9 @@ }, "kubernetes_policy_AllowedCSIDriver": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1051,11 +880,9 @@ }, "kubernetes_policy_AllowedFlexVolume": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1066,15 +893,12 @@ }, "kubernetes_policy_AllowedHostPath": { "type": "object", - "description": "", "properties": { "pathPrefix": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1085,11 +909,9 @@ }, "kubernetes_policy_Eviction": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, @@ -1099,7 +921,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Eviction", "required": true }, @@ -1117,11 +938,9 @@ }, "kubernetes_policy_FSGroupStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1129,8 +948,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1141,15 +959,12 @@ }, "kubernetes_policy_HostPortRange": { "type": "object", - "description": "", "properties": { "max": { - "type": "integer", - "description": "" + "type": "integer" }, "min": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1160,16 +975,13 @@ }, "kubernetes_policy_IDRange": { "type": "object", - "description": "", "properties": { "max": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "min": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1181,17 +993,14 @@ }, "kubernetes_policy_PodDisruptionBudget": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodDisruptionBudget", "required": true }, @@ -1217,17 +1026,14 @@ }, "kubernetes_policy_PodDisruptionBudgetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_policy_PodDisruptionBudget", "existingJavaType": "io.fabric8.kubernetes.api.model.policy.PodDisruptionBudget" @@ -1235,7 +1041,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodDisruptionBudgetList", "required": true }, @@ -1253,7 +1058,6 @@ }, "kubernetes_policy_PodDisruptionBudgetSpec": { "type": "object", - "description": "", "properties": { "maxUnavailable": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1276,19 +1080,15 @@ }, "kubernetes_policy_PodDisruptionBudgetStatus": { "type": "object", - "description": "", "properties": { "currentHealthy": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredHealthy": { - "type": "integer", - "description": "" + "type": "integer" }, "disruptedPods": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" @@ -1296,16 +1096,13 @@ "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "disruptionsAllowed": { - "type": "integer", - "description": "" + "type": "integer" }, "expectedPods": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1317,17 +1114,14 @@ }, "kubernetes_policy_PodSecurityPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicy", "required": true }, @@ -1348,17 +1142,14 @@ }, "kubernetes_policy_PodSecurityPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_policy_PodSecurityPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.policy.PodSecurityPolicy" @@ -1366,7 +1157,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicyList", "required": true }, @@ -1384,15 +1174,12 @@ }, "kubernetes_policy_PodSecurityPolicySpec": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedCSIDrivers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedCSIDriver", @@ -1401,16 +1188,13 @@ }, "allowedCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedFlexVolumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedFlexVolume", @@ -1419,7 +1203,6 @@ }, "allowedHostPaths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedHostPath", @@ -1428,42 +1211,33 @@ }, "allowedProcMountTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedUnsafeSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAddCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAllowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forbiddenSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fsGroup": { @@ -1471,20 +1245,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.policy.FSGroupStrategyOptions" }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPorts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_HostPortRange", @@ -1492,20 +1262,16 @@ } }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requiredDropCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "runAsGroup": { @@ -1530,11 +1296,9 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1546,11 +1310,9 @@ }, "kubernetes_policy_RunAsGroupStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1558,8 +1320,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1570,11 +1331,9 @@ }, "kubernetes_policy_RunAsUserStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1582,8 +1341,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1594,19 +1352,15 @@ }, "kubernetes_policy_RuntimeClassStrategyOptions": { "type": "object", - "description": "", "properties": { "allowedRuntimeClassNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultRuntimeClassName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1617,11 +1371,9 @@ }, "kubernetes_policy_SELinuxStrategyOptions": { "type": "object", - "description": "", "properties": { "rule": { - "type": "string", - "description": "" + "type": "string" }, "seLinuxOptions": { "$ref": "#/definitions/kubernetes_core_SELinuxOptions", @@ -1636,11 +1388,9 @@ }, "kubernetes_policy_SupplementalGroupsStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1648,8 +1398,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1763,8 +1512,7 @@ "allowedcsidriver": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1772,8 +1520,7 @@ "allowedflexvolume": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1781,12 +1528,10 @@ "allowedhostpath": { "properties": { "pathPrefix": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1795,19 +1540,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1815,7 +1557,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1824,7 +1565,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1837,13 +1577,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1851,7 +1589,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1862,26 +1599,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1892,41 +1624,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1935,7 +1660,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, @@ -1945,7 +1669,6 @@ }, "kind": { "type": "string", - "description": "", "default": "Eviction", "required": true }, @@ -1963,7 +1686,6 @@ "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -1971,8 +1693,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1981,19 +1702,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2001,12 +1719,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2014,12 +1730,10 @@ "hostportrange": { "properties": { "max": { - "type": "integer", - "description": "" + "type": "integer" }, "min": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -2028,12 +1742,10 @@ "properties": { "max": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "min": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2045,40 +1757,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2086,16 +1789,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2105,7 +1805,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -2114,10 +1813,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -2127,20 +1824,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2150,13 +1843,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -2164,7 +1855,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -2178,21 +1868,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2200,54 +1886,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -2255,24 +1930,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2285,16 +1956,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2302,7 +1970,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -2311,34 +1978,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -2346,18 +2006,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -2365,16 +2022,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2382,32 +2036,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2415,28 +2062,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2448,30 +2089,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -2482,13 +2117,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodDisruptionBudget", "required": true }, @@ -2511,13 +2144,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_policy_PodDisruptionBudget", "existingJavaType": "io.fabric8.kubernetes.api.model.policy.PodDisruptionBudget" @@ -2525,7 +2156,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodDisruptionBudgetList", "required": true }, @@ -2556,16 +2186,13 @@ "poddisruptionbudgetstatus": { "properties": { "currentHealthy": { - "type": "integer", - "description": "" + "type": "integer" }, "desiredHealthy": { - "type": "integer", - "description": "" + "type": "integer" }, "disruptedPods": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" @@ -2573,16 +2200,13 @@ "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "disruptionsAllowed": { - "type": "integer", - "description": "" + "type": "integer" }, "expectedPods": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2592,13 +2216,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicy", "required": true }, @@ -2617,13 +2239,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "policy/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_policy_PodSecurityPolicy", "existingJavaType": "io.fabric8.kubernetes.api.model.policy.PodSecurityPolicy" @@ -2631,7 +2251,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicyList", "required": true }, @@ -2645,12 +2264,10 @@ "podsecuritypolicyspec": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedCSIDrivers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedCSIDriver", @@ -2659,16 +2276,13 @@ }, "allowedCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedFlexVolumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedFlexVolume", @@ -2677,7 +2291,6 @@ }, "allowedHostPaths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_AllowedHostPath", @@ -2686,42 +2299,33 @@ }, "allowedProcMountTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedUnsafeSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAddCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAllowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forbiddenSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fsGroup": { @@ -2729,20 +2333,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.policy.FSGroupStrategyOptions" }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPorts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_HostPortRange", @@ -2750,20 +2350,16 @@ } }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requiredDropCapabilities": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "runAsGroup": { @@ -2788,11 +2384,9 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2801,12 +2395,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2814,8 +2406,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2827,10 +2418,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2840,7 +2429,6 @@ "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -2848,8 +2436,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2858,7 +2445,6 @@ "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -2866,8 +2452,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2876,15 +2461,12 @@ "properties": { "allowedRuntimeClassNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultRuntimeClassName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2892,20 +2474,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2913,8 +2491,7 @@ "selinuxstrategyoptions": { "properties": { "rule": { - "type": "string", - "description": "" + "type": "string" }, "seLinuxOptions": { "$ref": "#/definitions/kubernetes_core_SELinuxOptions", @@ -2926,12 +2503,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2940,13 +2515,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -2954,25 +2527,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2980,16 +2549,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2998,7 +2564,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -3006,24 +2571,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3032,7 +2592,6 @@ "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_policy_IDRange", @@ -3040,8 +2599,7 @@ } }, "rule": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3049,8 +2607,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3058,12 +2615,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3072,26 +2627,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/kube-schema.json index 8fa8acdf7b7..960306f6aa9 100644 --- a/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/kube-schema.json @@ -5,7 +5,6 @@ "definitions": { "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -14,11 +13,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -27,10 +24,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -43,23 +38,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -71,24 +61,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -99,27 +84,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -134,20 +114,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -155,7 +131,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -164,34 +139,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -199,18 +167,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -218,16 +183,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -238,31 +200,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -273,11 +228,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -288,15 +241,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -307,11 +257,9 @@ }, "kubernetes_rbac_v1_AggregationRule": { "type": "object", - "description": "", "properties": { "clusterRoleSelectors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -327,7 +275,6 @@ }, "kubernetes_rbac_v1_ClusterRole": { "type": "object", - "description": "", "properties": { "aggregationRule": { "$ref": "#/definitions/kubernetes_rbac_v1_AggregationRule", @@ -335,13 +282,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRole", "required": true }, @@ -351,7 +296,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" @@ -366,17 +310,14 @@ }, "kubernetes_rbac_v1_ClusterRoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBinding", "required": true }, @@ -390,7 +331,6 @@ }, "subjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Subject", @@ -406,17 +346,14 @@ }, "kubernetes_rbac_v1_ClusterRoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_ClusterRoleBinding", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.ClusterRoleBinding" @@ -424,7 +361,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBindingList", "required": true }, @@ -442,17 +378,14 @@ }, "kubernetes_rbac_v1_ClusterRoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_ClusterRole", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.ClusterRole" @@ -460,7 +393,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleList", "required": true }, @@ -478,50 +410,39 @@ }, "kubernetes_rbac_v1_PolicyRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -533,17 +454,14 @@ }, "kubernetes_rbac_v1_Role": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Role", "required": true }, @@ -553,7 +471,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" @@ -569,17 +486,14 @@ }, "kubernetes_rbac_v1_RoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RoleBinding", "required": true }, @@ -593,7 +507,6 @@ }, "subjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Subject", @@ -610,17 +523,14 @@ }, "kubernetes_rbac_v1_RoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_RoleBinding", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.RoleBinding" @@ -628,7 +538,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleBindingList", "required": true }, @@ -646,17 +555,14 @@ }, "kubernetes_rbac_v1_RoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Role", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.Role" @@ -664,7 +570,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleList", "required": true }, @@ -682,19 +587,15 @@ }, "kubernetes_rbac_v1_RoleRef": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -705,23 +606,18 @@ }, "kubernetes_rbac_v1_Subject": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/validation-schema.json index 2c4ec2944a5..3eb3681e56a 100644 --- a/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-rbac/src/main/resources/schema/validation-schema.json @@ -5,7 +5,6 @@ "definitions": { "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -14,11 +13,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -27,10 +24,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -43,23 +38,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -71,24 +61,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -99,27 +84,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -134,20 +114,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -155,7 +131,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -164,34 +139,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -199,18 +167,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -218,16 +183,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -238,31 +200,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -273,11 +228,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -288,15 +241,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -307,11 +257,9 @@ }, "kubernetes_rbac_v1_AggregationRule": { "type": "object", - "description": "", "properties": { "clusterRoleSelectors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -327,7 +275,6 @@ }, "kubernetes_rbac_v1_ClusterRole": { "type": "object", - "description": "", "properties": { "aggregationRule": { "$ref": "#/definitions/kubernetes_rbac_v1_AggregationRule", @@ -335,13 +282,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRole", "required": true }, @@ -351,7 +296,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" @@ -366,17 +310,14 @@ }, "kubernetes_rbac_v1_ClusterRoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBinding", "required": true }, @@ -390,7 +331,6 @@ }, "subjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Subject", @@ -406,17 +346,14 @@ }, "kubernetes_rbac_v1_ClusterRoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_ClusterRoleBinding", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.ClusterRoleBinding" @@ -424,7 +361,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBindingList", "required": true }, @@ -442,17 +378,14 @@ }, "kubernetes_rbac_v1_ClusterRoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_ClusterRole", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.ClusterRole" @@ -460,7 +393,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleList", "required": true }, @@ -478,50 +410,39 @@ }, "kubernetes_rbac_v1_PolicyRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -533,17 +454,14 @@ }, "kubernetes_rbac_v1_Role": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Role", "required": true }, @@ -553,7 +471,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" @@ -569,17 +486,14 @@ }, "kubernetes_rbac_v1_RoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RoleBinding", "required": true }, @@ -593,7 +507,6 @@ }, "subjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Subject", @@ -610,17 +523,14 @@ }, "kubernetes_rbac_v1_RoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_RoleBinding", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.RoleBinding" @@ -628,7 +538,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleBindingList", "required": true }, @@ -646,17 +555,14 @@ }, "kubernetes_rbac_v1_RoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Role", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.Role" @@ -664,7 +570,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleList", "required": true }, @@ -682,19 +587,15 @@ }, "kubernetes_rbac_v1_RoleRef": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -705,23 +606,18 @@ }, "kubernetes_rbac_v1_Subject": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -776,7 +672,6 @@ "properties": { "clusterRoleSelectors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -794,13 +689,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRole", "required": true }, @@ -810,7 +703,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" @@ -823,13 +715,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBinding", "required": true }, @@ -843,7 +733,6 @@ }, "subjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Subject", @@ -857,13 +746,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_ClusterRoleBinding", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.ClusterRoleBinding" @@ -871,7 +758,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBindingList", "required": true }, @@ -886,13 +772,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_ClusterRole", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.ClusterRole" @@ -900,7 +784,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleList", "required": true }, @@ -918,7 +801,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -927,10 +809,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -940,20 +820,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -962,21 +838,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -984,24 +856,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1014,16 +882,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1031,7 +896,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1040,34 +904,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1075,18 +932,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1094,16 +948,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1111,28 +962,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1141,46 +986,36 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1190,13 +1025,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Role", "required": true }, @@ -1206,7 +1039,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" @@ -1219,13 +1051,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RoleBinding", "required": true }, @@ -1239,7 +1069,6 @@ }, "subjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Subject", @@ -1253,13 +1082,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_RoleBinding", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.RoleBinding" @@ -1267,7 +1094,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleBindingList", "required": true }, @@ -1282,13 +1108,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "rbac.authorization.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_Role", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.Role" @@ -1296,7 +1120,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleList", "required": true }, @@ -1310,16 +1133,13 @@ "roleref": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1327,20 +1147,16 @@ "subject": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1348,8 +1164,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1357,12 +1172,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/kube-schema.json index 093e93b7c73..d69a8714d51 100644 --- a/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,35 +746,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -928,25 +777,20 @@ }, "kubernetes_scheduling_PriorityClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "scheduling.k8s.io/v1beta1", "required": true }, "description": { - "type": "string", - "description": "" + "type": "string" }, "globalDefault": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PriorityClass", "required": true }, @@ -955,12 +799,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -971,17 +813,14 @@ }, "kubernetes_scheduling_PriorityClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "scheduling.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_scheduling_PriorityClass", "existingJavaType": "io.fabric8.kubernetes.api.model.scheduling.PriorityClass" @@ -989,7 +828,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PriorityClassList", "required": true }, diff --git a/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/validation-schema.json index 8adbe96054d..bc65bf2727c 100644 --- a/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-scheduling/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,35 +746,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -928,25 +777,20 @@ }, "kubernetes_scheduling_PriorityClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "scheduling.k8s.io/v1beta1", "required": true }, "description": { - "type": "string", - "description": "" + "type": "string" }, "globalDefault": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PriorityClass", "required": true }, @@ -955,12 +799,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -971,17 +813,14 @@ }, "kubernetes_scheduling_PriorityClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "scheduling.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_scheduling_PriorityClass", "existingJavaType": "io.fabric8.kubernetes.api.model.scheduling.PriorityClass" @@ -989,7 +828,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PriorityClassList", "required": true }, @@ -1095,19 +933,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1115,7 +950,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1124,7 +958,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1137,13 +970,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1151,7 +982,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1162,26 +992,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -1192,41 +1017,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1238,19 +1056,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1258,12 +1073,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1274,40 +1087,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1316,13 +1120,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1330,7 +1132,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1344,21 +1145,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1366,54 +1163,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -1421,24 +1207,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1451,16 +1233,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1468,7 +1247,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -1477,34 +1255,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -1512,18 +1283,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -1531,16 +1299,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1548,32 +1313,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1581,28 +1339,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1614,30 +1366,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -1647,12 +1393,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1661,21 +1405,17 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "scheduling.k8s.io/v1beta1", "required": true }, "description": { - "type": "string", - "description": "" + "type": "string" }, "globalDefault": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PriorityClass", "required": true }, @@ -1684,12 +1424,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -1698,13 +1436,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "scheduling.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_scheduling_PriorityClass", "existingJavaType": "io.fabric8.kubernetes.api.model.scheduling.PriorityClass" @@ -1712,7 +1448,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PriorityClassList", "required": true }, @@ -1726,8 +1461,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1739,10 +1473,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1751,12 +1483,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1765,13 +1495,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -1779,25 +1507,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1805,16 +1529,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1823,7 +1544,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -1831,24 +1551,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1856,8 +1571,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1865,12 +1579,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1879,26 +1591,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } diff --git a/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/kube-schema.json index 451bf77f64c..7c600cadeff 100644 --- a/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,43 +757,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -946,23 +794,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -973,31 +816,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1008,19 +844,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1031,30 +863,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1067,35 +893,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1106,23 +925,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1133,15 +948,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1152,19 +964,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1175,11 +983,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1187,12 +993,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1203,15 +1007,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1219,12 +1020,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1235,11 +1034,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1255,19 +1052,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1282,15 +1076,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1306,11 +1097,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -1325,15 +1114,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1348,16 +1135,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1372,7 +1156,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1399,11 +1182,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1418,36 +1199,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1459,28 +1232,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -1495,15 +1262,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1514,23 +1278,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1541,19 +1300,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1564,19 +1319,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1587,15 +1338,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1606,56 +1354,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1666,19 +1402,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1689,11 +1421,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1704,19 +1434,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1727,15 +1453,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1746,35 +1469,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1785,15 +1500,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -1809,16 +1521,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1829,7 +1538,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -1848,15 +1556,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1867,15 +1572,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1886,19 +1588,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1909,15 +1607,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -1932,31 +1627,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1967,43 +1655,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2014,19 +1693,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2037,11 +1713,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -2050,7 +1724,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -2066,47 +1739,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2117,15 +1780,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2136,19 +1796,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2159,11 +1815,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2171,12 +1825,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2187,15 +1839,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2203,12 +1852,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2219,20 +1866,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2243,27 +1886,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2274,19 +1912,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2297,7 +1931,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -2373,7 +2006,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -2430,31 +2062,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2465,7 +2090,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -2492,7 +2116,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -2619,23 +2242,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2646,17 +2264,14 @@ }, "kubernetes_settings_PodPreset": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "settings.k8s.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodPreset", "required": true }, @@ -2678,17 +2293,14 @@ }, "kubernetes_settings_PodPresetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "settings.k8s.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_settings_PodPreset", "existingJavaType": "io.fabric8.kubernetes.api.model.settings.PodPreset" @@ -2696,7 +2308,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodPresetList", "required": true }, @@ -2714,11 +2325,9 @@ }, "kubernetes_settings_PodPresetSpec": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2727,7 +2336,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2740,7 +2348,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2749,7 +2356,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", diff --git a/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/validation-schema.json index ba05cbd1c44..f541fc7a051 100644 --- a/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-settings/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,11 +205,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -252,10 +216,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -268,23 +230,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -296,17 +253,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -314,7 +268,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -332,24 +285,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -360,57 +308,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -421,27 +357,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -456,20 +387,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -477,7 +404,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -486,34 +412,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -521,18 +440,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -540,16 +456,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,31 +473,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +501,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -604,34 +509,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -644,15 +542,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,14 +558,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -682,15 +574,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -701,17 +590,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -719,25 +605,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -748,19 +630,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -771,11 +649,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -783,24 +659,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -811,11 +682,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -826,15 +695,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -845,30 +711,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -881,7 +741,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -890,7 +749,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -899,43 +757,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -946,23 +794,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -973,31 +816,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1008,19 +844,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1031,30 +863,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1067,35 +893,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1106,23 +925,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1133,15 +948,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1152,19 +964,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1175,11 +983,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1187,12 +993,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1203,15 +1007,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1219,12 +1020,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1235,11 +1034,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1255,19 +1052,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1282,15 +1076,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1306,11 +1097,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -1325,15 +1114,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1348,16 +1135,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1372,7 +1156,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1399,11 +1182,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1418,36 +1199,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1459,28 +1232,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -1495,15 +1262,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1514,23 +1278,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1541,19 +1300,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1564,19 +1319,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1587,15 +1338,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1606,56 +1354,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1666,19 +1402,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1689,11 +1421,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1704,19 +1434,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1727,15 +1453,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1746,35 +1469,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1785,15 +1500,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -1809,16 +1521,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1829,7 +1538,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -1848,15 +1556,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1867,15 +1572,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1886,19 +1588,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1909,15 +1607,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -1932,31 +1627,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1967,43 +1655,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2014,19 +1693,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2037,11 +1713,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -2050,7 +1724,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -2066,47 +1739,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2117,15 +1780,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2136,19 +1796,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2159,11 +1815,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2171,12 +1825,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2187,15 +1839,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2203,12 +1852,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2219,20 +1866,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2243,27 +1886,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2274,19 +1912,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2297,7 +1931,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -2373,7 +2006,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -2430,31 +2062,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2465,7 +2090,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -2492,7 +2116,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -2619,23 +2242,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2646,17 +2264,14 @@ }, "kubernetes_settings_PodPreset": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "settings.k8s.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodPreset", "required": true }, @@ -2678,17 +2293,14 @@ }, "kubernetes_settings_PodPresetList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "settings.k8s.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_settings_PodPreset", "existingJavaType": "io.fabric8.kubernetes.api.model.settings.PodPreset" @@ -2696,7 +2308,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodPresetList", "required": true }, @@ -2714,11 +2325,9 @@ }, "kubernetes_settings_PodPresetSpec": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2727,7 +2336,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2740,7 +2348,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2749,7 +2356,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -2857,19 +2463,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -2877,7 +2480,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -2886,7 +2488,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -2899,13 +2500,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -2913,7 +2512,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -2923,20 +2521,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2944,28 +2538,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -2973,16 +2561,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2991,31 +2576,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3023,20 +2602,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3044,12 +2620,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3057,16 +2631,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3075,7 +2646,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3083,12 +2653,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3096,12 +2664,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3109,12 +2675,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3123,26 +2687,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -3152,27 +2711,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -3183,41 +2737,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3226,7 +2773,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -3243,12 +2789,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -3260,12 +2804,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -3278,8 +2820,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", @@ -3295,8 +2836,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -3309,12 +2849,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -3347,8 +2885,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -3360,33 +2897,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3398,25 +2928,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3428,12 +2953,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3441,20 +2964,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3463,19 +2982,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3483,16 +2999,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3500,16 +3013,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3517,12 +3027,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3530,12 +3038,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3546,40 +3052,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3587,53 +3084,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3641,16 +3127,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3659,7 +3142,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -3668,10 +3150,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -3681,20 +3161,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3704,13 +3180,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -3718,7 +3192,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -3732,21 +3205,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3754,54 +3223,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3809,8 +3267,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3818,24 +3275,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3847,16 +3300,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3864,12 +3314,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3878,16 +3326,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3895,7 +3340,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -3904,34 +3348,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -3939,18 +3376,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -3958,16 +3392,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3975,32 +3406,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4008,28 +3432,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4041,30 +3459,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -4075,11 +3487,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -4095,16 +3505,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4125,12 +3532,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4138,12 +3543,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4152,13 +3555,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "settings.k8s.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodPreset", "required": true }, @@ -4177,13 +3578,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "settings.k8s.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_settings_PodPreset", "existingJavaType": "io.fabric8.kubernetes.api.model.settings.PodPreset" @@ -4191,7 +3590,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodPresetList", "required": true }, @@ -4206,7 +3604,6 @@ "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -4215,7 +3612,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -4228,7 +3624,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -4237,7 +3632,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -4250,16 +3644,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4267,12 +3658,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4280,12 +3669,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -4297,8 +3684,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4306,28 +3692,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4338,40 +3718,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4379,16 +3751,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4397,7 +3767,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4406,7 +3775,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4420,10 +3788,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4432,44 +3798,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4477,12 +3834,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4490,16 +3845,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4508,7 +3860,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4516,12 +3867,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -4529,12 +3878,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4542,12 +3889,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4555,12 +3900,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4568,17 +3911,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4587,13 +3927,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -4601,25 +3939,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4627,16 +3961,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4645,7 +3976,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -4653,24 +3983,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4678,24 +4003,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4703,8 +4024,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4712,16 +4032,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4729,12 +4046,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4743,26 +4058,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -4845,7 +4155,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -4899,28 +4208,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5070,20 +4373,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/kube-schema.json index 99a9f7cb285..93f283da07a 100644 --- a/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/kube-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,23 +746,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -916,31 +768,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -951,23 +796,18 @@ }, "kubernetes_core_AzureFilePersistentVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -978,7 +818,6 @@ }, "kubernetes_core_CSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -989,12 +828,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1005,21 +842,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1030,35 +863,28 @@ }, "kubernetes_core_CephFSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1069,23 +895,19 @@ }, "kubernetes_core_CinderPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1096,36 +918,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1137,28 +951,22 @@ }, "kubernetes_core_FlexPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1173,15 +981,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1192,23 +997,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1219,23 +1019,18 @@ }, "kubernetes_core_GlusterfsPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1246,15 +1041,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1265,56 +1057,44 @@ }, "kubernetes_core_ISCSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1325,15 +1105,12 @@ }, "kubernetes_core_LocalVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1344,19 +1121,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1367,11 +1140,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -1386,23 +1157,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1414,11 +1180,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1427,7 +1191,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1443,35 +1206,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1482,7 +1237,6 @@ }, "kubernetes_core_PersistentVolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -1581,15 +1335,12 @@ }, "kubernetes_core_PersistentVolumeSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -1606,7 +1357,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -1663,11 +1413,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -1679,8 +1427,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -1703,16 +1450,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -1727,15 +1472,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1746,19 +1488,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1769,31 +1507,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1804,43 +1535,34 @@ }, "kubernetes_core_RBDPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1851,47 +1573,37 @@ }, "kubernetes_core_ScaleIOPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1902,15 +1614,12 @@ }, "kubernetes_core_SecretReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1921,27 +1630,22 @@ }, "kubernetes_core_StorageOSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1952,18 +1656,14 @@ }, "kubernetes_core_TopologySelectorLabelRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1975,11 +1675,9 @@ }, "kubernetes_core_TopologySelectorTerm": { "type": "object", - "description": "", "properties": { "matchLabelExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorLabelRequirement", @@ -1995,7 +1693,6 @@ }, "kubernetes_core_VolumeNodeAffinity": { "type": "object", - "description": "", "properties": { "required": { "$ref": "#/definitions/kubernetes_core_NodeSelector", @@ -2010,23 +1707,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2037,15 +1729,12 @@ }, "kubernetes_storageclass_StorageClass": { "type": "object", - "description": "", "properties": { "allowVolumeExpansion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedTopologies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorTerm", @@ -2054,13 +1743,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "StorageClass", "required": true }, @@ -2070,33 +1757,26 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "parameters": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "provisioner": { - "type": "string", - "description": "" + "type": "string" }, "reclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "volumeBindingMode": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2107,17 +1787,14 @@ }, "kubernetes_storageclass_StorageClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_StorageClass", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.StorageClass" @@ -2125,7 +1802,6 @@ }, "kind": { "type": "string", - "description": "", "default": "StorageClassList", "required": true }, @@ -2143,17 +1819,14 @@ }, "kubernetes_storageclass_VolumeAttachment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "VolumeAttachment", "required": true }, @@ -2179,17 +1852,14 @@ }, "kubernetes_storageclass_VolumeAttachmentList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_VolumeAttachment", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.VolumeAttachment" @@ -2197,7 +1867,6 @@ }, "kind": { "type": "string", - "description": "", "default": "VolumeAttachmentList", "required": true }, @@ -2215,15 +1884,13 @@ }, "kubernetes_storageclass_VolumeAttachmentSource": { "type": "object", - "description": "", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeSpec", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeSpec" }, "persistentVolumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2234,15 +1901,12 @@ }, "kubernetes_storageclass_VolumeAttachmentSpec": { "type": "object", - "description": "", "properties": { "attacher": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/kubernetes_storageclass_VolumeAttachmentSource", @@ -2257,22 +1921,18 @@ }, "kubernetes_storageclass_VolumeAttachmentStatus": { "type": "object", - "description": "", "properties": { "attachError": { "$ref": "#/definitions/kubernetes_storageclass_VolumeError", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.VolumeError" }, "attached": { - "type": "boolean", - "description": "" + "type": "boolean" }, "attachmentMetadata": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -2289,11 +1949,9 @@ }, "kubernetes_storageclass_VolumeError": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2308,17 +1966,14 @@ }, "kubernetes_storageclass_v1beta1_CSIDriver": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSIDriver", "required": true }, @@ -2339,17 +1994,14 @@ }, "kubernetes_storageclass_v1beta1_CSIDriverList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSIDriver", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSIDriver" @@ -2357,7 +2009,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSIDriverList", "required": true }, @@ -2375,31 +2026,24 @@ }, "kubernetes_storageclass_v1beta1_CSIDriverSpec": { "type": "object", - "description": "", "properties": { "attachRequired": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsGroupPolicy": { - "type": "string", - "description": "" + "type": "string" }, "podInfoOnMount": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageCapacity": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeLifecycleModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2411,17 +2055,14 @@ }, "kubernetes_storageclass_v1beta1_CSINode": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSINode", "required": true }, @@ -2442,26 +2083,21 @@ }, "kubernetes_storageclass_v1beta1_CSINodeDriver": { "type": "object", - "description": "", "properties": { "allocatable": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_VolumeNodeResources", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.VolumeNodeResources" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "nodeID": { - "type": "string", - "description": "" + "type": "string" }, "topologyKeys": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2473,17 +2109,14 @@ }, "kubernetes_storageclass_v1beta1_CSINodeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSINode", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSINode" @@ -2491,7 +2124,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSINodeList", "required": true }, @@ -2509,11 +2141,9 @@ }, "kubernetes_storageclass_v1beta1_CSINodeSpec": { "type": "object", - "description": "", "properties": { "drivers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSINodeDriver", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSINodeDriver" @@ -2528,11 +2158,9 @@ }, "kubernetes_storageclass_v1beta1_VolumeNodeResources": { "type": "object", - "description": "", "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/validation-schema.json index b6cb5ec4d61..b4700e0f6c6 100644 --- a/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/kubernetes-model-storageclass/src/main/resources/schema/validation-schema.json @@ -5,11 +5,9 @@ "definitions": { "k8s_io_apimachinery_pkg_api_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -20,23 +18,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -44,7 +38,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -53,7 +46,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -68,17 +60,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -86,7 +75,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -99,30 +87,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -135,45 +117,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -184,7 +158,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -193,23 +166,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -220,15 +189,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -239,17 +205,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -257,7 +220,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -275,24 +237,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -303,57 +260,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -364,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -399,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -420,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -429,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -464,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -483,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -503,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -538,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -547,34 +461,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -587,15 +494,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -606,14 +510,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -625,15 +526,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,17 +542,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -662,25 +557,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -691,19 +582,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -714,11 +601,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -726,24 +611,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -754,11 +634,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -769,15 +647,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -788,30 +663,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -824,7 +693,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -833,7 +701,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -842,43 +709,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -889,23 +746,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -916,31 +768,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -951,23 +796,18 @@ }, "kubernetes_core_AzureFilePersistentVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -978,7 +818,6 @@ }, "kubernetes_core_CSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -989,12 +828,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1005,21 +842,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1030,35 +863,28 @@ }, "kubernetes_core_CephFSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1069,23 +895,19 @@ }, "kubernetes_core_CinderPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1096,36 +918,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1137,28 +951,22 @@ }, "kubernetes_core_FlexPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -1173,15 +981,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1192,23 +997,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1219,23 +1019,18 @@ }, "kubernetes_core_GlusterfsPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1246,15 +1041,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1265,56 +1057,44 @@ }, "kubernetes_core_ISCSIPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1325,15 +1105,12 @@ }, "kubernetes_core_LocalVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1344,19 +1121,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1367,11 +1140,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -1386,23 +1157,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1414,11 +1180,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1427,7 +1191,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1443,35 +1206,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1482,7 +1237,6 @@ }, "kubernetes_core_PersistentVolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -1581,15 +1335,12 @@ }, "kubernetes_core_PersistentVolumeSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -1606,7 +1357,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -1663,11 +1413,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -1679,8 +1427,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -1703,16 +1450,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -1727,15 +1472,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1746,19 +1488,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1769,31 +1507,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1804,43 +1535,34 @@ }, "kubernetes_core_RBDPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1851,47 +1573,37 @@ }, "kubernetes_core_ScaleIOPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1902,15 +1614,12 @@ }, "kubernetes_core_SecretReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1921,27 +1630,22 @@ }, "kubernetes_core_StorageOSPersistentVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1952,18 +1656,14 @@ }, "kubernetes_core_TopologySelectorLabelRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1975,11 +1675,9 @@ }, "kubernetes_core_TopologySelectorTerm": { "type": "object", - "description": "", "properties": { "matchLabelExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorLabelRequirement", @@ -1995,7 +1693,6 @@ }, "kubernetes_core_VolumeNodeAffinity": { "type": "object", - "description": "", "properties": { "required": { "$ref": "#/definitions/kubernetes_core_NodeSelector", @@ -2010,23 +1707,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2037,15 +1729,12 @@ }, "kubernetes_storageclass_StorageClass": { "type": "object", - "description": "", "properties": { "allowVolumeExpansion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedTopologies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorTerm", @@ -2054,13 +1743,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "StorageClass", "required": true }, @@ -2070,33 +1757,26 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "parameters": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "provisioner": { - "type": "string", - "description": "" + "type": "string" }, "reclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "volumeBindingMode": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2107,17 +1787,14 @@ }, "kubernetes_storageclass_StorageClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_StorageClass", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.StorageClass" @@ -2125,7 +1802,6 @@ }, "kind": { "type": "string", - "description": "", "default": "StorageClassList", "required": true }, @@ -2143,17 +1819,14 @@ }, "kubernetes_storageclass_VolumeAttachment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "VolumeAttachment", "required": true }, @@ -2179,17 +1852,14 @@ }, "kubernetes_storageclass_VolumeAttachmentList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_VolumeAttachment", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.VolumeAttachment" @@ -2197,7 +1867,6 @@ }, "kind": { "type": "string", - "description": "", "default": "VolumeAttachmentList", "required": true }, @@ -2215,15 +1884,13 @@ }, "kubernetes_storageclass_VolumeAttachmentSource": { "type": "object", - "description": "", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeSpec", "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeSpec" }, "persistentVolumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2234,15 +1901,12 @@ }, "kubernetes_storageclass_VolumeAttachmentSpec": { "type": "object", - "description": "", "properties": { "attacher": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/kubernetes_storageclass_VolumeAttachmentSource", @@ -2257,22 +1921,18 @@ }, "kubernetes_storageclass_VolumeAttachmentStatus": { "type": "object", - "description": "", "properties": { "attachError": { "$ref": "#/definitions/kubernetes_storageclass_VolumeError", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.VolumeError" }, "attached": { - "type": "boolean", - "description": "" + "type": "boolean" }, "attachmentMetadata": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -2289,11 +1949,9 @@ }, "kubernetes_storageclass_VolumeError": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -2308,17 +1966,14 @@ }, "kubernetes_storageclass_v1beta1_CSIDriver": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSIDriver", "required": true }, @@ -2339,17 +1994,14 @@ }, "kubernetes_storageclass_v1beta1_CSIDriverList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSIDriver", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSIDriver" @@ -2357,7 +2009,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSIDriverList", "required": true }, @@ -2375,31 +2026,24 @@ }, "kubernetes_storageclass_v1beta1_CSIDriverSpec": { "type": "object", - "description": "", "properties": { "attachRequired": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsGroupPolicy": { - "type": "string", - "description": "" + "type": "string" }, "podInfoOnMount": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageCapacity": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeLifecycleModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2411,17 +2055,14 @@ }, "kubernetes_storageclass_v1beta1_CSINode": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSINode", "required": true }, @@ -2442,26 +2083,21 @@ }, "kubernetes_storageclass_v1beta1_CSINodeDriver": { "type": "object", - "description": "", "properties": { "allocatable": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_VolumeNodeResources", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.VolumeNodeResources" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "nodeID": { - "type": "string", - "description": "" + "type": "string" }, "topologyKeys": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2473,17 +2109,14 @@ }, "kubernetes_storageclass_v1beta1_CSINodeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSINode", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSINode" @@ -2491,7 +2124,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSINodeList", "required": true }, @@ -2509,11 +2141,9 @@ }, "kubernetes_storageclass_v1beta1_CSINodeSpec": { "type": "object", - "description": "", "properties": { "drivers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSINodeDriver", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSINodeDriver" @@ -2528,11 +2158,9 @@ }, "kubernetes_storageclass_v1beta1_VolumeNodeResources": { "type": "object", - "description": "", "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2655,19 +2283,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -2675,7 +2300,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -2684,7 +2308,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -2697,13 +2320,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -2711,7 +2332,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -2721,20 +2341,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2742,28 +2358,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -2771,20 +2381,16 @@ "azurefilepersistentvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretNamespace": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2793,31 +2399,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2825,20 +2425,17 @@ "cinderpersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2847,26 +2444,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -2877,13 +2469,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSIDriver", "required": true }, @@ -2902,13 +2492,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSIDriver", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSIDriver" @@ -2916,7 +2504,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSIDriverList", "required": true }, @@ -2930,28 +2517,22 @@ "csidriverspec": { "properties": { "attachRequired": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsGroupPolicy": { - "type": "string", - "description": "" + "type": "string" }, "podInfoOnMount": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageCapacity": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeLifecycleModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2961,13 +2542,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSINode", "required": true }, @@ -2989,19 +2568,15 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.VolumeNodeResources" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "nodeID": { - "type": "string", - "description": "" + "type": "string" }, "topologyKeys": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3011,13 +2586,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSINode", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSINode" @@ -3025,7 +2598,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSINodeList", "required": true }, @@ -3040,7 +2612,6 @@ "properties": { "drivers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_v1beta1_CSINodeDriver", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.v1beta1.CSINodeDriver" @@ -3060,12 +2631,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -3076,21 +2645,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "volumeHandle": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3099,41 +2664,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3141,33 +2699,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3179,25 +2730,20 @@ "flexpersistentvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", @@ -3209,12 +2755,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3222,20 +2766,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3244,19 +2784,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3264,20 +2801,16 @@ "glusterfspersistentvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "endpointsNamespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3285,12 +2818,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3298,12 +2829,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3314,40 +2843,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3355,53 +2875,42 @@ "iscsipersistentvolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3410,13 +2919,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -3424,7 +2931,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -3438,21 +2944,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3460,54 +2962,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -3515,12 +3006,10 @@ "localvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3528,24 +3017,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3557,16 +3042,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3575,7 +3057,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -3587,20 +3068,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3610,7 +3087,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -3619,7 +3095,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -3633,16 +3108,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -3650,7 +3122,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -3659,34 +3130,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -3694,18 +3158,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -3713,16 +3174,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3730,32 +3188,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3763,28 +3214,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -3796,30 +3241,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -3923,11 +3362,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "awsElasticBlockStore": { @@ -3944,7 +3381,6 @@ }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/k8s_io_apimachinery_pkg_api_resource_Quantity", "existingJavaType": "Quantity" @@ -4001,11 +3437,9 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nfs": { @@ -4017,8 +3451,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeNodeAffinity" }, "persistentVolumeReclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/kubernetes_core_PhotonPersistentDiskVolumeSource", @@ -4041,16 +3474,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ScaleIOPersistentVolumeSource" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "storageos": { "$ref": "#/definitions/kubernetes_core_StorageOSPersistentVolumeSource", "existingJavaType": "io.fabric8.kubernetes.api.model.StorageOSPersistentVolumeSource" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/kubernetes_core_VsphereVirtualDiskVolumeSource", @@ -4062,12 +3493,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4075,16 +3504,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4092,12 +3518,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4105,8 +3529,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4114,28 +3537,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4146,40 +3563,32 @@ "rbdpersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4188,10 +3597,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4200,44 +3607,35 @@ "scaleiopersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretReference", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4245,12 +3643,10 @@ "secretreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4258,12 +3654,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4272,13 +3666,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -4286,25 +3678,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4312,16 +3700,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4330,7 +3715,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -4338,24 +3722,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4363,12 +3742,10 @@ "storageclass": { "properties": { "allowVolumeExpansion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedTopologies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorTerm", @@ -4377,13 +3754,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "StorageClass", "required": true }, @@ -4393,33 +3768,26 @@ }, "mountOptions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "parameters": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "provisioner": { - "type": "string", - "description": "" + "type": "string" }, "reclaimPolicy": { - "type": "string", - "description": "" + "type": "string" }, "volumeBindingMode": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4428,13 +3796,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_StorageClass", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.StorageClass" @@ -4442,7 +3808,6 @@ }, "kind": { "type": "string", - "description": "", "default": "StorageClassList", "required": true }, @@ -4456,24 +3821,20 @@ "storageospersistentvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4481,8 +3842,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4490,15 +3850,12 @@ "topologyselectorlabelrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4508,7 +3865,6 @@ "properties": { "matchLabelExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySelectorLabelRequirement", @@ -4521,12 +3877,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4535,26 +3889,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -4565,13 +3914,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "VolumeAttachment", "required": true }, @@ -4594,13 +3941,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "storage.k8s.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_storageclass_VolumeAttachment", "existingJavaType": "io.fabric8.kubernetes.api.model.storage.VolumeAttachment" @@ -4608,7 +3953,6 @@ }, "kind": { "type": "string", - "description": "", "default": "VolumeAttachmentList", "required": true }, @@ -4626,8 +3970,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeSpec" }, "persistentVolumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -4635,12 +3978,10 @@ "volumeattachmentspec": { "properties": { "attacher": { - "type": "string", - "description": "" + "type": "string" }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/kubernetes_storageclass_VolumeAttachmentSource", @@ -4656,15 +3997,12 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.storage.VolumeError" }, "attached": { - "type": "boolean", - "description": "" + "type": "boolean" }, "attachmentMetadata": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -4678,8 +4016,7 @@ "volumeerror": { "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4700,8 +4037,7 @@ "volumenoderesources": { "properties": { "count": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -4709,20 +4045,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/kube-schema.json index 6f04c7536f0..45494212321 100644 --- a/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/kube-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,7 +74,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -93,15 +82,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -112,11 +98,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -125,10 +109,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -141,23 +123,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -169,17 +146,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -187,7 +161,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -205,24 +178,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -233,27 +201,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -268,20 +231,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -289,7 +248,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -298,34 +256,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -333,18 +284,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -352,16 +300,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -372,31 +317,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -407,7 +345,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -416,15 +353,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -435,17 +369,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -453,25 +384,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -482,19 +409,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -505,11 +428,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -517,24 +438,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -545,11 +461,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,15 +474,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -579,7 +490,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -588,7 +498,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -597,43 +506,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,15 +543,12 @@ }, "os_console_v1_ApplicationMenuSpec": { "type": "object", - "description": "", "properties": { "imageURL": { - "type": "string", - "description": "" + "type": "string" }, "section": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,15 +559,12 @@ }, "os_console_v1_CLIDownloadLink": { "type": "object", - "description": "", "properties": { "href": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -682,17 +575,14 @@ }, "os_console_v1_ConsoleCLIDownload": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleCLIDownload", "required": true }, @@ -713,17 +603,14 @@ }, "os_console_v1_ConsoleCLIDownloadList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleCLIDownload", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleCLIDownload" @@ -731,7 +618,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleCLIDownloadList", "required": true }, @@ -749,19 +635,15 @@ }, "os_console_v1_ConsoleCLIDownloadSpec": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "links": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_CLIDownloadLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.CLIDownloadLink" @@ -776,17 +658,14 @@ }, "os_console_v1_ConsoleExternalLogLink": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleExternalLogLink", "required": true }, @@ -807,17 +686,14 @@ }, "os_console_v1_ConsoleExternalLogLinkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleExternalLogLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleExternalLogLink" @@ -825,7 +701,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleExternalLogLinkList", "required": true }, @@ -843,19 +718,15 @@ }, "os_console_v1_ConsoleExternalLogLinkSpec": { "type": "object", - "description": "", "properties": { "hrefTemplate": { - "type": "string", - "description": "" + "type": "string" }, "namespaceFilter": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -866,17 +737,14 @@ }, "os_console_v1_ConsoleLink": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleLink", "required": true }, @@ -897,17 +765,14 @@ }, "os_console_v1_ConsoleLinkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleLink" @@ -915,7 +780,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleLinkList", "required": true }, @@ -933,27 +797,23 @@ }, "os_console_v1_ConsoleLinkSpec": { "type": "object", - "description": "", "properties": { "applicationMenu": { "$ref": "#/definitions/os_console_v1_ApplicationMenuSpec", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ApplicationMenuSpec" }, "href": { - "type": "string", - "description": "" + "type": "string" }, "location": { - "type": "string", - "description": "" + "type": "string" }, "namespaceDashboard": { "$ref": "#/definitions/os_console_v1_NamespaceDashboardSpec", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.NamespaceDashboardSpec" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -964,17 +824,14 @@ }, "os_console_v1_ConsoleNotification": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleNotification", "required": true }, @@ -995,17 +852,14 @@ }, "os_console_v1_ConsoleNotificationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleNotification", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleNotification" @@ -1013,7 +867,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleNotificationList", "required": true }, @@ -1031,27 +884,22 @@ }, "os_console_v1_ConsoleNotificationSpec": { "type": "object", - "description": "", "properties": { "backgroundColor": { - "type": "string", - "description": "" + "type": "string" }, "color": { - "type": "string", - "description": "" + "type": "string" }, "link": { "$ref": "#/definitions/os_console_v1_Link", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.Link" }, "location": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1062,17 +910,14 @@ }, "os_console_v1_ConsoleYAMLSample": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleYAMLSample", "required": true }, @@ -1093,17 +938,14 @@ }, "os_console_v1_ConsoleYAMLSampleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleYAMLSample", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleYAMLSample" @@ -1111,7 +953,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleYAMLSampleList", "required": true }, @@ -1129,27 +970,22 @@ }, "os_console_v1_ConsoleYAMLSampleSpec": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "snippet": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetResource": { "$ref": "#/definitions/kubernetes_apimachinery_TypeMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.TypeMeta" }, "title": { - "type": "string", - "description": "" + "type": "string" }, "yaml": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1160,15 +996,12 @@ }, "os_console_v1_Link": { "type": "object", - "description": "", "properties": { "href": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1179,7 +1012,6 @@ }, "os_console_v1_NamespaceDashboardSpec": { "type": "object", - "description": "", "properties": { "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1187,11 +1019,9 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, diff --git a/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/validation-schema.json index 0bdd8f4adec..410a23d1f62 100644 --- a/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/openshift-model-console/src/main/resources/schema/validation-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,7 +74,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -93,15 +82,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -112,11 +98,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -125,10 +109,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -141,23 +123,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -169,17 +146,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -187,7 +161,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -205,24 +178,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -233,27 +201,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -268,20 +231,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -289,7 +248,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -298,34 +256,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -333,18 +284,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -352,16 +300,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -372,31 +317,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -407,7 +345,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -416,15 +353,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -435,17 +369,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -453,25 +384,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -482,19 +409,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -505,11 +428,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -517,24 +438,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -545,11 +461,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,15 +474,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -579,7 +490,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -588,7 +498,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -597,43 +506,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -644,15 +543,12 @@ }, "os_console_v1_ApplicationMenuSpec": { "type": "object", - "description": "", "properties": { "imageURL": { - "type": "string", - "description": "" + "type": "string" }, "section": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -663,15 +559,12 @@ }, "os_console_v1_CLIDownloadLink": { "type": "object", - "description": "", "properties": { "href": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -682,17 +575,14 @@ }, "os_console_v1_ConsoleCLIDownload": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleCLIDownload", "required": true }, @@ -713,17 +603,14 @@ }, "os_console_v1_ConsoleCLIDownloadList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleCLIDownload", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleCLIDownload" @@ -731,7 +618,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleCLIDownloadList", "required": true }, @@ -749,19 +635,15 @@ }, "os_console_v1_ConsoleCLIDownloadSpec": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "links": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_CLIDownloadLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.CLIDownloadLink" @@ -776,17 +658,14 @@ }, "os_console_v1_ConsoleExternalLogLink": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleExternalLogLink", "required": true }, @@ -807,17 +686,14 @@ }, "os_console_v1_ConsoleExternalLogLinkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleExternalLogLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleExternalLogLink" @@ -825,7 +701,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleExternalLogLinkList", "required": true }, @@ -843,19 +718,15 @@ }, "os_console_v1_ConsoleExternalLogLinkSpec": { "type": "object", - "description": "", "properties": { "hrefTemplate": { - "type": "string", - "description": "" + "type": "string" }, "namespaceFilter": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -866,17 +737,14 @@ }, "os_console_v1_ConsoleLink": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleLink", "required": true }, @@ -897,17 +765,14 @@ }, "os_console_v1_ConsoleLinkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleLink" @@ -915,7 +780,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleLinkList", "required": true }, @@ -933,27 +797,23 @@ }, "os_console_v1_ConsoleLinkSpec": { "type": "object", - "description": "", "properties": { "applicationMenu": { "$ref": "#/definitions/os_console_v1_ApplicationMenuSpec", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ApplicationMenuSpec" }, "href": { - "type": "string", - "description": "" + "type": "string" }, "location": { - "type": "string", - "description": "" + "type": "string" }, "namespaceDashboard": { "$ref": "#/definitions/os_console_v1_NamespaceDashboardSpec", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.NamespaceDashboardSpec" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -964,17 +824,14 @@ }, "os_console_v1_ConsoleNotification": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleNotification", "required": true }, @@ -995,17 +852,14 @@ }, "os_console_v1_ConsoleNotificationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleNotification", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleNotification" @@ -1013,7 +867,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleNotificationList", "required": true }, @@ -1031,27 +884,22 @@ }, "os_console_v1_ConsoleNotificationSpec": { "type": "object", - "description": "", "properties": { "backgroundColor": { - "type": "string", - "description": "" + "type": "string" }, "color": { - "type": "string", - "description": "" + "type": "string" }, "link": { "$ref": "#/definitions/os_console_v1_Link", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.Link" }, "location": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1062,17 +910,14 @@ }, "os_console_v1_ConsoleYAMLSample": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleYAMLSample", "required": true }, @@ -1093,17 +938,14 @@ }, "os_console_v1_ConsoleYAMLSampleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleYAMLSample", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleYAMLSample" @@ -1111,7 +953,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleYAMLSampleList", "required": true }, @@ -1129,27 +970,22 @@ }, "os_console_v1_ConsoleYAMLSampleSpec": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "snippet": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetResource": { "$ref": "#/definitions/kubernetes_apimachinery_TypeMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.TypeMeta" }, "title": { - "type": "string", - "description": "" + "type": "string" }, "yaml": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1160,15 +996,12 @@ }, "os_console_v1_Link": { "type": "object", - "description": "", "properties": { "href": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1179,7 +1012,6 @@ }, "os_console_v1_NamespaceDashboardSpec": { "type": "object", - "description": "", "properties": { "namespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -1187,11 +1019,9 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1287,19 +1117,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -1307,7 +1134,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -1316,7 +1142,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -1329,13 +1154,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -1343,7 +1166,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -1353,12 +1175,10 @@ "applicationmenuspec": { "properties": { "imageURL": { - "type": "string", - "description": "" + "type": "string" }, "section": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1366,12 +1186,10 @@ "clidownloadlink": { "properties": { "href": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1380,13 +1198,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleCLIDownload", "required": true }, @@ -1405,13 +1221,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleCLIDownload", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleCLIDownload" @@ -1419,7 +1233,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleCLIDownloadList", "required": true }, @@ -1433,16 +1246,13 @@ "consoleclidownloadspec": { "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "links": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_CLIDownloadLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.CLIDownloadLink" @@ -1455,13 +1265,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleExternalLogLink", "required": true }, @@ -1480,13 +1288,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleExternalLogLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleExternalLogLink" @@ -1494,7 +1300,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleExternalLogLinkList", "required": true }, @@ -1508,16 +1313,13 @@ "consoleexternalloglinkspec": { "properties": { "hrefTemplate": { - "type": "string", - "description": "" + "type": "string" }, "namespaceFilter": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1526,13 +1328,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleLink", "required": true }, @@ -1551,13 +1351,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleLink", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleLink" @@ -1565,7 +1363,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleLinkList", "required": true }, @@ -1583,20 +1380,17 @@ "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ApplicationMenuSpec" }, "href": { - "type": "string", - "description": "" + "type": "string" }, "location": { - "type": "string", - "description": "" + "type": "string" }, "namespaceDashboard": { "$ref": "#/definitions/os_console_v1_NamespaceDashboardSpec", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.NamespaceDashboardSpec" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1605,13 +1399,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleNotification", "required": true }, @@ -1630,13 +1422,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleNotification", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleNotification" @@ -1644,7 +1434,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleNotificationList", "required": true }, @@ -1658,24 +1447,20 @@ "consolenotificationspec": { "properties": { "backgroundColor": { - "type": "string", - "description": "" + "type": "string" }, "color": { - "type": "string", - "description": "" + "type": "string" }, "link": { "$ref": "#/definitions/os_console_v1_Link", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.Link" }, "location": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1684,13 +1469,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ConsoleYAMLSample", "required": true }, @@ -1709,13 +1492,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "console.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_console_v1_ConsoleYAMLSample", "existingJavaType": "io.fabric8.openshift.api.model.console.v1.ConsoleYAMLSample" @@ -1723,7 +1504,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleYAMLSampleList", "required": true }, @@ -1737,24 +1517,20 @@ "consoleyamlsamplespec": { "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "snippet": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetResource": { "$ref": "#/definitions/kubernetes_apimachinery_TypeMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.TypeMeta" }, "title": { - "type": "string", - "description": "" + "type": "string" }, "yaml": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1765,12 +1541,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1781,40 +1555,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1823,7 +1588,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -1832,10 +1596,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1845,20 +1607,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1867,12 +1625,10 @@ "link": { "properties": { "href": { - "type": "string", - "description": "" + "type": "string" }, "text": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1881,13 +1637,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -1895,7 +1649,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -1909,21 +1662,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -1931,24 +1680,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1965,11 +1710,9 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1979,16 +1722,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1996,7 +1736,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -2005,34 +1744,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -2040,18 +1772,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -2059,16 +1788,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2076,28 +1802,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2111,12 +1831,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2125,13 +1843,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -2139,25 +1855,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2165,16 +1877,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2183,7 +1892,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -2191,24 +1899,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2216,8 +1919,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -2225,12 +1927,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/kube-schema.json index 9fd14a41513..2c26c8050a4 100644 --- a/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/kube-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,7 +74,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -93,15 +82,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -112,11 +98,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -125,10 +109,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -141,23 +123,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -169,17 +146,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -187,7 +161,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -205,24 +178,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -233,27 +201,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -268,20 +231,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -289,7 +248,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -298,34 +256,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -333,18 +284,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -352,16 +300,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -372,31 +317,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -407,7 +345,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -416,15 +353,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -435,17 +369,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -453,25 +384,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -482,19 +409,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -505,11 +428,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -517,24 +438,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -545,11 +461,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,15 +474,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -579,7 +490,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -588,7 +498,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -597,19 +506,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -621,43 +526,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -668,23 +563,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -695,7 +585,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -718,31 +607,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -753,19 +635,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -776,30 +654,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -812,24 +684,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -841,35 +708,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -880,23 +740,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -907,15 +763,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -926,19 +779,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -949,11 +798,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -961,12 +808,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -977,15 +822,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -993,12 +835,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1009,29 +849,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1040,7 +874,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1048,12 +881,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1065,13 +896,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1095,28 +924,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1125,7 +948,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1133,8 +955,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1145,29 +966,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1178,11 +993,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1198,19 +1011,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1225,15 +1035,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1249,11 +1056,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1268,15 +1073,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1291,16 +1094,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1315,7 +1115,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1342,11 +1141,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1361,15 +1158,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1381,36 +1175,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1422,28 +1208,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -1458,15 +1238,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1477,23 +1254,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1504,19 +1276,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1527,19 +1295,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1550,15 +1314,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -1566,16 +1327,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1586,15 +1345,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1605,7 +1361,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -1628,15 +1383,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1647,56 +1399,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1707,19 +1447,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1730,7 +1466,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -1749,11 +1484,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1764,19 +1497,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1787,11 +1516,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -1811,11 +1538,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -1830,23 +1555,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1858,11 +1578,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1871,7 +1589,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1887,15 +1604,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1906,7 +1620,6 @@ }, "kubernetes_core_PersistentVolumeClaimCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1917,20 +1630,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1941,15 +1650,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -1965,16 +1671,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1985,20 +1688,16 @@ }, "kubernetes_core_PersistentVolumeClaimStatus": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -2007,7 +1706,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -2015,8 +1713,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2027,7 +1724,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2046,15 +1742,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2065,15 +1758,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2084,11 +1774,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2097,7 +1785,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2113,7 +1800,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2121,16 +1807,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2141,11 +1824,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2154,7 +1835,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2170,29 +1850,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2205,17 +1879,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -2235,19 +1906,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2258,15 +1925,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2277,39 +1942,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2320,15 +1979,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -2343,31 +1999,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2378,43 +2027,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2425,19 +2065,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2448,11 +2085,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -2461,7 +2096,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -2477,23 +2111,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2504,47 +2133,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2555,15 +2174,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2574,15 +2190,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2593,19 +2206,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2616,11 +2225,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2628,12 +2235,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2644,15 +2249,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2660,12 +2262,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2676,40 +2276,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2733,20 +2325,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2757,27 +2345,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2788,15 +2371,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2807,11 +2387,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -2826,28 +2404,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2858,19 +2430,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2881,7 +2449,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -2957,7 +2524,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -3014,15 +2580,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3033,31 +2596,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3068,7 +2624,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -3095,7 +2650,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -3222,23 +2776,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3249,15 +2798,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3268,19 +2815,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3291,11 +2834,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3306,23 +2847,19 @@ }, "os_monitoring_v1_APIServerConfig": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", @@ -3337,11 +2874,9 @@ }, "os_monitoring_v1_AlertingSpec": { "type": "object", - "description": "", "properties": { "alertmanagers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_AlertmanagerEndpoints", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.AlertmanagerEndpoints" @@ -3356,17 +2891,14 @@ }, "os_monitoring_v1_Alertmanager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Alertmanager", "required": true }, @@ -3392,35 +2924,28 @@ }, "os_monitoring_v1_AlertmanagerEndpoints": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "pathPrefix": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", @@ -3435,17 +2960,14 @@ }, "os_monitoring_v1_AlertmanagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Alertmanager", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Alertmanager" @@ -3453,7 +2975,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AlertmanagerList", "required": true }, @@ -3471,15 +2992,12 @@ }, "os_monitoring_v1_AlertmanagerSpec": { "type": "object", - "description": "", "properties": { "additionalPeers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "affinity": { @@ -3487,29 +3005,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "clusterAdvertiseAddress": { - "type": "string", - "description": "" + "type": "string" }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "configSecret": { - "type": "string", - "description": "" + "type": "string" }, "containers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3517,16 +3029,13 @@ } }, "externalUrl": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3535,7 +3044,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3543,65 +3051,52 @@ } }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "podMetadata": { "$ref": "#/definitions/os_monitoring_v1_EmbeddedObjectMetadata", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.EmbeddedObjectMetadata" }, "portName": { - "type": "string", - "description": "" + "type": "string" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "resources": { "$ref": "#/definitions/kubernetes_core_ResourceRequirements", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "retention": { - "type": "string", - "description": "" + "type": "string" }, "routePrefix": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "securityContext": { @@ -3609,24 +3104,20 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "storage": { "$ref": "#/definitions/os_monitoring_v1_StorageSpec", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.StorageSpec" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3634,12 +3125,10 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3648,7 +3137,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3664,27 +3152,21 @@ }, "os_monitoring_v1_AlertmanagerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3695,11 +3177,9 @@ }, "os_monitoring_v1_ArbitraryFSAccessThroughSMsConfig": { "type": "object", - "description": "", "properties": { "deny": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3710,7 +3190,6 @@ }, "os_monitoring_v1_BasicAuth": { "type": "object", - "description": "", "properties": { "password": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", @@ -3729,29 +3208,23 @@ }, "os_monitoring_v1_EmbeddedObjectMetadata": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3762,17 +3235,14 @@ }, "os_monitoring_v1_EmbeddedPersistentVolumeClaim": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EmbeddedPersistentVolumeClaim", "required": true }, @@ -3797,35 +3267,29 @@ }, "os_monitoring_v1_Endpoint": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenSecret": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "honorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "honorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "interval": { - "type": "string", - "description": "" + "type": "string" }, "metricRelabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3834,32 +3298,25 @@ }, "params": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "relabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3867,12 +3324,10 @@ } }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3891,19 +3346,15 @@ }, "os_monitoring_v1_NamespaceSelector": { "type": "object", - "description": "", "properties": { "any": { - "type": "boolean", - "description": "" + "type": "boolean" }, "matchNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3915,23 +3366,18 @@ }, "os_monitoring_v1_PodMetricsEndpoint": { "type": "object", - "description": "", "properties": { "honorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "honorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "interval": { - "type": "string", - "description": "" + "type": "string" }, "metricRelabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3940,32 +3386,25 @@ }, "params": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "relabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3973,12 +3412,10 @@ } }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3993,17 +3430,14 @@ }, "os_monitoring_v1_PodMonitor": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodMonitor", "required": true }, @@ -4025,17 +3459,14 @@ }, "os_monitoring_v1_PodMonitorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PodMonitor", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PodMonitor" @@ -4043,7 +3474,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMonitorList", "required": true }, @@ -4061,11 +3491,9 @@ }, "os_monitoring_v1_PodMonitorSpec": { "type": "object", - "description": "", "properties": { "jobLabel": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/os_monitoring_v1_NamespaceSelector", @@ -4073,7 +3501,6 @@ }, "podMetricsEndpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PodMetricsEndpoint", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PodMetricsEndpoint" @@ -4081,16 +3508,13 @@ }, "podTargetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { @@ -4106,17 +3530,14 @@ }, "os_monitoring_v1_Prometheus": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Prometheus", "required": true }, @@ -4142,17 +3563,14 @@ }, "os_monitoring_v1_PrometheusList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Prometheus", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Prometheus" @@ -4160,7 +3578,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PrometheusList", "required": true }, @@ -4178,17 +3595,14 @@ }, "os_monitoring_v1_PrometheusRule": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PrometheusRule", "required": true }, @@ -4210,15 +3624,12 @@ }, "os_monitoring_v1_PrometheusRuleExcludeConfig": { "type": "object", - "description": "", "properties": { "ruleName": { - "type": "string", - "description": "" + "type": "string" }, "ruleNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4229,17 +3640,14 @@ }, "os_monitoring_v1_PrometheusRuleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PrometheusRule", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PrometheusRule" @@ -4247,7 +3655,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PrometheusRuleList", "required": true }, @@ -4265,11 +3672,9 @@ }, "os_monitoring_v1_PrometheusRuleSpec": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RuleGroup", @@ -4285,7 +3690,6 @@ }, "os_monitoring_v1_PrometheusSpec": { "type": "object", - "description": "", "properties": { "additionalAlertManagerConfigs": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", @@ -4308,8 +3712,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.AlertingSpec" }, "allowOverlappingBlocks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiserverConfig": { "$ref": "#/definitions/os_monitoring_v1_APIServerConfig", @@ -4320,21 +3723,17 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.ArbitraryFSAccessThroughSMsConfig" }, "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "containers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -4342,50 +3741,39 @@ } }, "disableCompaction": { - "type": "boolean", - "description": "" + "type": "boolean" }, "enableAdminAPI": { - "type": "boolean", - "description": "" + "type": "boolean" }, "enforcedNamespaceLabel": { - "type": "string", - "description": "" + "type": "string" }, "enforcedSampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "evaluationInterval": { - "type": "string", - "description": "" + "type": "string" }, "externalLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "externalUrl": { - "type": "string", - "description": "" + "type": "string" }, "ignoreNamespaceSelectors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -4394,7 +3782,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -4402,37 +3789,29 @@ } }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overrideHonorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "overrideHonorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "podMetadata": { "$ref": "#/definitions/os_monitoring_v1_EmbeddedObjectMetadata", @@ -4447,12 +3826,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "portName": { - "type": "string", - "description": "" + "type": "string" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "probeNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4463,12 +3840,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "prometheusExternalLabelName": { - "type": "string", - "description": "" + "type": "string" }, "prometheusRulesExcludedFromEnforce": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_PrometheusRuleExcludeConfig", @@ -4480,12 +3855,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.QuerySpec" }, "queryLogFile": { - "type": "string", - "description": "" + "type": "string" }, "remoteRead": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RemoteReadSpec", @@ -4494,7 +3867,6 @@ }, "remoteWrite": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RemoteWriteSpec", @@ -4502,28 +3874,23 @@ } }, "replicaExternalLabelName": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "resources": { "$ref": "#/definitions/kubernetes_core_ResourceRequirements", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "retention": { - "type": "string", - "description": "" + "type": "string" }, "retentionSize": { - "type": "string", - "description": "" + "type": "string" }, "routePrefix": { - "type": "string", - "description": "" + "type": "string" }, "ruleNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4538,20 +3905,16 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Rules" }, "scrapeInterval": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "securityContext": { @@ -4559,8 +3922,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "serviceMonitorNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4571,16 +3933,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "storage": { "$ref": "#/definitions/os_monitoring_v1_StorageSpec", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.StorageSpec" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "thanos": { "$ref": "#/definitions/os_monitoring_v1_ThanosSpec", @@ -4588,7 +3948,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -4596,12 +3955,10 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -4610,7 +3967,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -4618,8 +3974,7 @@ } }, "walCompression": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4630,27 +3985,21 @@ }, "os_monitoring_v1_PrometheusStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4661,23 +4010,18 @@ }, "os_monitoring_v1_QuerySpec": { "type": "object", - "description": "", "properties": { "lookbackDelta": { - "type": "string", - "description": "" + "type": "string" }, "maxConcurrency": { - "type": "integer", - "description": "" + "type": "integer" }, "maxSamples": { - "type": "integer", - "description": "" + "type": "integer" }, "timeout": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4688,39 +4032,30 @@ }, "os_monitoring_v1_QueueConfig": { "type": "object", - "description": "", "properties": { "batchSendDeadline": { - "type": "string", - "description": "" + "type": "string" }, "capacity": { - "type": "integer", - "description": "" + "type": "integer" }, "maxBackoff": { - "type": "string", - "description": "" + "type": "string" }, "maxRetries": { - "type": "integer", - "description": "" + "type": "integer" }, "maxSamplesPerSend": { - "type": "integer", - "description": "" + "type": "integer" }, "maxShards": { - "type": "integer", - "description": "" + "type": "integer" }, "minBackoff": { - "type": "string", - "description": "" + "type": "string" }, "minShards": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4731,41 +4066,32 @@ }, "os_monitoring_v1_RelabelConfig": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "modulus": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "regex": { - "type": "string", - "description": "" + "type": "string" }, "replacement": { - "type": "string", - "description": "" + "type": "string" }, "separator": { - "type": "string", - "description": "" + "type": "string" }, "sourceLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "targetLabel": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4776,42 +4102,33 @@ }, "os_monitoring_v1_RemoteReadSpec": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "readRecent": { - "type": "boolean", - "description": "" + "type": "boolean" }, "remoteTimeout": { - "type": "string", - "description": "" + "type": "string" }, "requiredMatchers": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -4820,8 +4137,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4832,47 +4148,39 @@ }, "os_monitoring_v1_RemoteWriteSpec": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "queueConfig": { "$ref": "#/definitions/os_monitoring_v1_QueueConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.QueueConfig" }, "remoteTimeout": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "url": { - "type": "string", - "description": "" + "type": "string" }, "writeRelabelConfigs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -4888,18 +4196,14 @@ }, "os_monitoring_v1_Rule": { "type": "object", - "description": "", "properties": { "alert": { - "type": "string", - "description": "" + "type": "string" }, "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -4908,21 +4212,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "for": { - "type": "string", - "description": "" + "type": "string" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "record": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4933,23 +4233,18 @@ }, "os_monitoring_v1_RuleGroup": { "type": "object", - "description": "", "properties": { "interval": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "partial_response_strategy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Rule", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Rule" @@ -4964,7 +4259,6 @@ }, "os_monitoring_v1_Rules": { "type": "object", - "description": "", "properties": { "alert": { "$ref": "#/definitions/os_monitoring_v1_RulesAlert", @@ -4979,19 +4273,15 @@ }, "os_monitoring_v1_RulesAlert": { "type": "object", - "description": "", "properties": { "forGracePeriod": { - "type": "string", - "description": "" + "type": "string" }, "forOutageTolerance": { - "type": "string", - "description": "" + "type": "string" }, "resendDelay": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5002,7 +4292,6 @@ }, "os_monitoring_v1_SecretOrConfigMap": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -5021,17 +4310,14 @@ }, "os_monitoring_v1_ServiceMonitor": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceMonitor", "required": true }, @@ -5053,17 +4339,14 @@ }, "os_monitoring_v1_ServiceMonitorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_ServiceMonitor", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.ServiceMonitor" @@ -5071,7 +4354,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceMonitorList", "required": true }, @@ -5089,19 +4371,16 @@ }, "os_monitoring_v1_ServiceMonitorSpec": { "type": "object", - "description": "", "properties": { "endpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Endpoint", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Endpoint" } }, "jobLabel": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/os_monitoring_v1_NamespaceSelector", @@ -5109,16 +4388,13 @@ }, "podTargetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { @@ -5127,11 +4403,9 @@ }, "targetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5143,11 +4417,9 @@ }, "os_monitoring_v1_StorageSpec": { "type": "object", - "description": "", "properties": { "disableMountSubPath": { - "type": "boolean", - "description": "" + "type": "boolean" }, "emptyDir": { "$ref": "#/definitions/kubernetes_core_EmptyDirVolumeSource", @@ -5166,39 +4438,33 @@ }, "os_monitoring_v1_TLSConfig": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_monitoring_v1_SecretOrConfigMap", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.SecretOrConfigMap" }, "caFile": { - "type": "string", - "description": "" + "type": "string" }, "cert": { "$ref": "#/definitions/os_monitoring_v1_SecretOrConfigMap", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.SecretOrConfigMap" }, "certFile": { - "type": "string", - "description": "" + "type": "string" }, "insecureSkipVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "keyFile": { - "type": "string", - "description": "" + "type": "string" }, "keySecret": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "serverName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5209,35 +4475,28 @@ }, "os_monitoring_v1_ThanosSpec": { "type": "object", - "description": "", "properties": { "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "grpcServerTlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "minTime": { - "type": "string", - "description": "" + "type": "string" }, "objectStorageConfig": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", @@ -5248,20 +4507,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "tracingConfig": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/validation-schema.json index fffb09e8917..28dee0217cc 100644 --- a/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/openshift-model-monitoring/src/main/resources/schema/validation-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,7 +74,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -93,15 +82,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -112,11 +98,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -125,10 +109,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -141,23 +123,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -169,17 +146,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -187,7 +161,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -205,24 +178,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -233,27 +201,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -268,20 +231,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -289,7 +248,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -298,34 +256,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -333,18 +284,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -352,16 +300,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -372,31 +317,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -407,7 +345,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -416,15 +353,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -435,17 +369,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -453,25 +384,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -482,19 +409,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -505,11 +428,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -517,24 +438,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -545,11 +461,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -560,15 +474,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -579,7 +490,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -588,7 +498,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -597,19 +506,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -621,43 +526,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -668,23 +563,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -695,7 +585,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -718,31 +607,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -753,19 +635,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -776,30 +654,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -812,24 +684,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -841,35 +708,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -880,23 +740,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -907,15 +763,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -926,19 +779,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -949,11 +798,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -961,12 +808,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -977,15 +822,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -993,12 +835,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1009,29 +849,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1040,7 +874,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1048,12 +881,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1065,13 +896,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1095,28 +924,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1125,7 +948,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1133,8 +955,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1145,29 +966,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1178,11 +993,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1198,19 +1011,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1225,15 +1035,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1249,11 +1056,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1268,15 +1073,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1291,16 +1094,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1315,7 +1115,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1342,11 +1141,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1361,15 +1158,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1381,36 +1175,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1422,28 +1208,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -1458,15 +1238,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1477,23 +1254,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1504,19 +1276,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1527,19 +1295,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1550,15 +1314,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -1566,16 +1327,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1586,15 +1345,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1605,7 +1361,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -1628,15 +1383,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1647,56 +1399,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1707,19 +1447,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1730,7 +1466,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -1749,11 +1484,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1764,19 +1497,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1787,11 +1516,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -1811,11 +1538,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -1830,23 +1555,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1858,11 +1578,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1871,7 +1589,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -1887,15 +1604,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1906,7 +1620,6 @@ }, "kubernetes_core_PersistentVolumeClaimCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -1917,20 +1630,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1941,15 +1650,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -1965,16 +1671,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1985,20 +1688,16 @@ }, "kubernetes_core_PersistentVolumeClaimStatus": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -2007,7 +1706,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -2015,8 +1713,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2027,7 +1724,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2046,15 +1742,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2065,15 +1758,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2084,11 +1774,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2097,7 +1785,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2113,7 +1800,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2121,16 +1807,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2141,11 +1824,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2154,7 +1835,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2170,29 +1850,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2205,17 +1879,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -2235,19 +1906,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2258,15 +1925,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2277,39 +1942,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2320,15 +1979,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -2343,31 +1999,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2378,43 +2027,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2425,19 +2065,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2448,11 +2085,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -2461,7 +2096,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -2477,23 +2111,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2504,47 +2133,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2555,15 +2174,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2574,15 +2190,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2593,19 +2206,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2616,11 +2225,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2628,12 +2235,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2644,15 +2249,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -2660,12 +2262,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2676,40 +2276,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2733,20 +2325,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2757,27 +2345,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2788,15 +2371,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2807,11 +2387,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -2826,28 +2404,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2858,19 +2430,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2881,7 +2449,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -2957,7 +2524,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -3014,15 +2580,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3033,31 +2596,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3068,7 +2624,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -3095,7 +2650,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -3222,23 +2776,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3249,15 +2798,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3268,19 +2815,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3291,11 +2834,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3306,23 +2847,19 @@ }, "os_monitoring_v1_APIServerConfig": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", @@ -3337,11 +2874,9 @@ }, "os_monitoring_v1_AlertingSpec": { "type": "object", - "description": "", "properties": { "alertmanagers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_AlertmanagerEndpoints", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.AlertmanagerEndpoints" @@ -3356,17 +2891,14 @@ }, "os_monitoring_v1_Alertmanager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Alertmanager", "required": true }, @@ -3392,35 +2924,28 @@ }, "os_monitoring_v1_AlertmanagerEndpoints": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "pathPrefix": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", @@ -3435,17 +2960,14 @@ }, "os_monitoring_v1_AlertmanagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Alertmanager", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Alertmanager" @@ -3453,7 +2975,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AlertmanagerList", "required": true }, @@ -3471,15 +2992,12 @@ }, "os_monitoring_v1_AlertmanagerSpec": { "type": "object", - "description": "", "properties": { "additionalPeers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "affinity": { @@ -3487,29 +3005,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "clusterAdvertiseAddress": { - "type": "string", - "description": "" + "type": "string" }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "configSecret": { - "type": "string", - "description": "" + "type": "string" }, "containers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3517,16 +3029,13 @@ } }, "externalUrl": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3535,7 +3044,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3543,65 +3051,52 @@ } }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "podMetadata": { "$ref": "#/definitions/os_monitoring_v1_EmbeddedObjectMetadata", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.EmbeddedObjectMetadata" }, "portName": { - "type": "string", - "description": "" + "type": "string" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "resources": { "$ref": "#/definitions/kubernetes_core_ResourceRequirements", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "retention": { - "type": "string", - "description": "" + "type": "string" }, "routePrefix": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "securityContext": { @@ -3609,24 +3104,20 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "storage": { "$ref": "#/definitions/os_monitoring_v1_StorageSpec", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.StorageSpec" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3634,12 +3125,10 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -3648,7 +3137,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3664,27 +3152,21 @@ }, "os_monitoring_v1_AlertmanagerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3695,11 +3177,9 @@ }, "os_monitoring_v1_ArbitraryFSAccessThroughSMsConfig": { "type": "object", - "description": "", "properties": { "deny": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3710,7 +3190,6 @@ }, "os_monitoring_v1_BasicAuth": { "type": "object", - "description": "", "properties": { "password": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", @@ -3729,29 +3208,23 @@ }, "os_monitoring_v1_EmbeddedObjectMetadata": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3762,17 +3235,14 @@ }, "os_monitoring_v1_EmbeddedPersistentVolumeClaim": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EmbeddedPersistentVolumeClaim", "required": true }, @@ -3797,35 +3267,29 @@ }, "os_monitoring_v1_Endpoint": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenSecret": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "honorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "honorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "interval": { - "type": "string", - "description": "" + "type": "string" }, "metricRelabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3834,32 +3298,25 @@ }, "params": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "relabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3867,12 +3324,10 @@ } }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3891,19 +3346,15 @@ }, "os_monitoring_v1_NamespaceSelector": { "type": "object", - "description": "", "properties": { "any": { - "type": "boolean", - "description": "" + "type": "boolean" }, "matchNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3915,23 +3366,18 @@ }, "os_monitoring_v1_PodMetricsEndpoint": { "type": "object", - "description": "", "properties": { "honorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "honorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "interval": { - "type": "string", - "description": "" + "type": "string" }, "metricRelabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3940,32 +3386,25 @@ }, "params": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "relabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -3973,12 +3412,10 @@ } }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3993,17 +3430,14 @@ }, "os_monitoring_v1_PodMonitor": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodMonitor", "required": true }, @@ -4025,17 +3459,14 @@ }, "os_monitoring_v1_PodMonitorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PodMonitor", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PodMonitor" @@ -4043,7 +3474,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMonitorList", "required": true }, @@ -4061,11 +3491,9 @@ }, "os_monitoring_v1_PodMonitorSpec": { "type": "object", - "description": "", "properties": { "jobLabel": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/os_monitoring_v1_NamespaceSelector", @@ -4073,7 +3501,6 @@ }, "podMetricsEndpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PodMetricsEndpoint", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PodMetricsEndpoint" @@ -4081,16 +3508,13 @@ }, "podTargetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { @@ -4106,17 +3530,14 @@ }, "os_monitoring_v1_Prometheus": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Prometheus", "required": true }, @@ -4142,17 +3563,14 @@ }, "os_monitoring_v1_PrometheusList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Prometheus", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Prometheus" @@ -4160,7 +3578,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PrometheusList", "required": true }, @@ -4178,17 +3595,14 @@ }, "os_monitoring_v1_PrometheusRule": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PrometheusRule", "required": true }, @@ -4210,15 +3624,12 @@ }, "os_monitoring_v1_PrometheusRuleExcludeConfig": { "type": "object", - "description": "", "properties": { "ruleName": { - "type": "string", - "description": "" + "type": "string" }, "ruleNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4229,17 +3640,14 @@ }, "os_monitoring_v1_PrometheusRuleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PrometheusRule", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PrometheusRule" @@ -4247,7 +3655,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PrometheusRuleList", "required": true }, @@ -4265,11 +3672,9 @@ }, "os_monitoring_v1_PrometheusRuleSpec": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RuleGroup", @@ -4285,7 +3690,6 @@ }, "os_monitoring_v1_PrometheusSpec": { "type": "object", - "description": "", "properties": { "additionalAlertManagerConfigs": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", @@ -4308,8 +3712,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.AlertingSpec" }, "allowOverlappingBlocks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiserverConfig": { "$ref": "#/definitions/os_monitoring_v1_APIServerConfig", @@ -4320,21 +3723,17 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.ArbitraryFSAccessThroughSMsConfig" }, "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "containers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -4342,50 +3741,39 @@ } }, "disableCompaction": { - "type": "boolean", - "description": "" + "type": "boolean" }, "enableAdminAPI": { - "type": "boolean", - "description": "" + "type": "boolean" }, "enforcedNamespaceLabel": { - "type": "string", - "description": "" + "type": "string" }, "enforcedSampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "evaluationInterval": { - "type": "string", - "description": "" + "type": "string" }, "externalLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "externalUrl": { - "type": "string", - "description": "" + "type": "string" }, "ignoreNamespaceSelectors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -4394,7 +3782,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -4402,37 +3789,29 @@ } }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overrideHonorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "overrideHonorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "podMetadata": { "$ref": "#/definitions/os_monitoring_v1_EmbeddedObjectMetadata", @@ -4447,12 +3826,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "portName": { - "type": "string", - "description": "" + "type": "string" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "probeNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4463,12 +3840,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "prometheusExternalLabelName": { - "type": "string", - "description": "" + "type": "string" }, "prometheusRulesExcludedFromEnforce": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_PrometheusRuleExcludeConfig", @@ -4480,12 +3855,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.QuerySpec" }, "queryLogFile": { - "type": "string", - "description": "" + "type": "string" }, "remoteRead": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RemoteReadSpec", @@ -4494,7 +3867,6 @@ }, "remoteWrite": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RemoteWriteSpec", @@ -4502,28 +3874,23 @@ } }, "replicaExternalLabelName": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "resources": { "$ref": "#/definitions/kubernetes_core_ResourceRequirements", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "retention": { - "type": "string", - "description": "" + "type": "string" }, "retentionSize": { - "type": "string", - "description": "" + "type": "string" }, "routePrefix": { - "type": "string", - "description": "" + "type": "string" }, "ruleNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4538,20 +3905,16 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Rules" }, "scrapeInterval": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "securityContext": { @@ -4559,8 +3922,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "serviceMonitorNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4571,16 +3933,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "storage": { "$ref": "#/definitions/os_monitoring_v1_StorageSpec", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.StorageSpec" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "thanos": { "$ref": "#/definitions/os_monitoring_v1_ThanosSpec", @@ -4588,7 +3948,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -4596,12 +3955,10 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -4610,7 +3967,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -4618,8 +3974,7 @@ } }, "walCompression": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4630,27 +3985,21 @@ }, "os_monitoring_v1_PrometheusStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4661,23 +4010,18 @@ }, "os_monitoring_v1_QuerySpec": { "type": "object", - "description": "", "properties": { "lookbackDelta": { - "type": "string", - "description": "" + "type": "string" }, "maxConcurrency": { - "type": "integer", - "description": "" + "type": "integer" }, "maxSamples": { - "type": "integer", - "description": "" + "type": "integer" }, "timeout": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4688,39 +4032,30 @@ }, "os_monitoring_v1_QueueConfig": { "type": "object", - "description": "", "properties": { "batchSendDeadline": { - "type": "string", - "description": "" + "type": "string" }, "capacity": { - "type": "integer", - "description": "" + "type": "integer" }, "maxBackoff": { - "type": "string", - "description": "" + "type": "string" }, "maxRetries": { - "type": "integer", - "description": "" + "type": "integer" }, "maxSamplesPerSend": { - "type": "integer", - "description": "" + "type": "integer" }, "maxShards": { - "type": "integer", - "description": "" + "type": "integer" }, "minBackoff": { - "type": "string", - "description": "" + "type": "string" }, "minShards": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4731,41 +4066,32 @@ }, "os_monitoring_v1_RelabelConfig": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "modulus": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "regex": { - "type": "string", - "description": "" + "type": "string" }, "replacement": { - "type": "string", - "description": "" + "type": "string" }, "separator": { - "type": "string", - "description": "" + "type": "string" }, "sourceLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "targetLabel": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4776,42 +4102,33 @@ }, "os_monitoring_v1_RemoteReadSpec": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "readRecent": { - "type": "boolean", - "description": "" + "type": "boolean" }, "remoteTimeout": { - "type": "string", - "description": "" + "type": "string" }, "requiredMatchers": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -4820,8 +4137,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4832,47 +4148,39 @@ }, "os_monitoring_v1_RemoteWriteSpec": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_monitoring_v1_BasicAuth", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "queueConfig": { "$ref": "#/definitions/os_monitoring_v1_QueueConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.QueueConfig" }, "remoteTimeout": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "url": { - "type": "string", - "description": "" + "type": "string" }, "writeRelabelConfigs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -4888,18 +4196,14 @@ }, "os_monitoring_v1_Rule": { "type": "object", - "description": "", "properties": { "alert": { - "type": "string", - "description": "" + "type": "string" }, "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -4908,21 +4212,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "for": { - "type": "string", - "description": "" + "type": "string" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "record": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4933,23 +4233,18 @@ }, "os_monitoring_v1_RuleGroup": { "type": "object", - "description": "", "properties": { "interval": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "partial_response_strategy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Rule", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Rule" @@ -4964,7 +4259,6 @@ }, "os_monitoring_v1_Rules": { "type": "object", - "description": "", "properties": { "alert": { "$ref": "#/definitions/os_monitoring_v1_RulesAlert", @@ -4979,19 +4273,15 @@ }, "os_monitoring_v1_RulesAlert": { "type": "object", - "description": "", "properties": { "forGracePeriod": { - "type": "string", - "description": "" + "type": "string" }, "forOutageTolerance": { - "type": "string", - "description": "" + "type": "string" }, "resendDelay": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5002,7 +4292,6 @@ }, "os_monitoring_v1_SecretOrConfigMap": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -5021,17 +4310,14 @@ }, "os_monitoring_v1_ServiceMonitor": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceMonitor", "required": true }, @@ -5053,17 +4339,14 @@ }, "os_monitoring_v1_ServiceMonitorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_ServiceMonitor", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.ServiceMonitor" @@ -5071,7 +4354,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceMonitorList", "required": true }, @@ -5089,19 +4371,16 @@ }, "os_monitoring_v1_ServiceMonitorSpec": { "type": "object", - "description": "", "properties": { "endpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Endpoint", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Endpoint" } }, "jobLabel": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/os_monitoring_v1_NamespaceSelector", @@ -5109,16 +4388,13 @@ }, "podTargetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { @@ -5127,11 +4403,9 @@ }, "targetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5143,11 +4417,9 @@ }, "os_monitoring_v1_StorageSpec": { "type": "object", - "description": "", "properties": { "disableMountSubPath": { - "type": "boolean", - "description": "" + "type": "boolean" }, "emptyDir": { "$ref": "#/definitions/kubernetes_core_EmptyDirVolumeSource", @@ -5166,39 +4438,33 @@ }, "os_monitoring_v1_TLSConfig": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_monitoring_v1_SecretOrConfigMap", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.SecretOrConfigMap" }, "caFile": { - "type": "string", - "description": "" + "type": "string" }, "cert": { "$ref": "#/definitions/os_monitoring_v1_SecretOrConfigMap", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.SecretOrConfigMap" }, "certFile": { - "type": "string", - "description": "" + "type": "string" }, "insecureSkipVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "keyFile": { - "type": "string", - "description": "" + "type": "string" }, "keySecret": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "serverName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5209,35 +4475,28 @@ }, "os_monitoring_v1_ThanosSpec": { "type": "object", - "description": "", "properties": { "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "grpcServerTlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "minTime": { - "type": "string", - "description": "" + "type": "string" }, "objectStorageConfig": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", @@ -5248,20 +4507,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "tracingConfig": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5373,7 +4629,6 @@ "properties": { "alertmanagers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_AlertmanagerEndpoints", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.AlertmanagerEndpoints" @@ -5386,13 +4641,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Alertmanager", "required": true }, @@ -5414,32 +4667,26 @@ "alertmanagerendpoints": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "pathPrefix": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", @@ -5452,13 +4699,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Alertmanager", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Alertmanager" @@ -5466,7 +4711,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AlertmanagerList", "required": true }, @@ -5481,11 +4725,9 @@ "properties": { "additionalPeers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "affinity": { @@ -5493,29 +4735,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "clusterAdvertiseAddress": { - "type": "string", - "description": "" + "type": "string" }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "configSecret": { - "type": "string", - "description": "" + "type": "string" }, "containers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -5523,16 +4759,13 @@ } }, "externalUrl": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -5541,7 +4774,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -5549,65 +4781,52 @@ } }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "podMetadata": { "$ref": "#/definitions/os_monitoring_v1_EmbeddedObjectMetadata", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.EmbeddedObjectMetadata" }, "portName": { - "type": "string", - "description": "" + "type": "string" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "resources": { "$ref": "#/definitions/kubernetes_core_ResourceRequirements", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "retention": { - "type": "string", - "description": "" + "type": "string" }, "routePrefix": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "securityContext": { @@ -5615,24 +4834,20 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "storage": { "$ref": "#/definitions/os_monitoring_v1_StorageSpec", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.StorageSpec" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -5640,12 +4855,10 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -5654,7 +4867,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -5667,24 +4879,19 @@ "alertmanagerstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -5693,19 +4900,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -5713,7 +4917,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -5722,7 +4925,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -5735,13 +4937,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -5749,7 +4949,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -5763,16 +4962,13 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "host": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", @@ -5784,8 +4980,7 @@ "arbitraryfsaccessthroughsmsconfig": { "properties": { "deny": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5793,20 +4988,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5814,28 +5005,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5843,16 +5028,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5874,20 +5056,16 @@ "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5897,31 +5075,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5929,20 +5101,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5950,12 +5119,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5963,16 +5130,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -5981,7 +5145,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -5989,12 +5152,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6002,12 +5163,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -6015,12 +5174,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6029,25 +5186,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6056,7 +5208,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -6064,12 +5215,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -6081,13 +5230,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -6111,28 +5258,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -6141,7 +5282,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -6149,8 +5289,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6158,26 +5297,21 @@ "containerport": { "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6185,27 +5319,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -6216,7 +5345,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -6233,12 +5361,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -6250,12 +5376,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -6269,25 +5393,20 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6296,13 +5415,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EmbeddedPersistentVolumeClaim", "required": true }, @@ -6324,8 +5441,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -6341,28 +5457,23 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenSecret": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "honorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "honorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "interval": { - "type": "string", - "description": "" + "type": "string" }, "metricRelabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -6371,32 +5482,25 @@ }, "params": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "relabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -6404,12 +5508,10 @@ } }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -6429,8 +5531,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -6443,12 +5544,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -6481,8 +5580,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -6495,11 +5593,9 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6508,33 +5604,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6546,25 +5635,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6576,12 +5660,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6589,20 +5671,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6610,16 +5688,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6627,16 +5702,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6644,12 +5716,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6674,12 +5744,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6687,12 +5755,10 @@ "httpgetaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -6700,16 +5766,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6717,12 +5781,10 @@ "httpheader": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6733,40 +5795,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6774,16 +5827,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -6792,53 +5842,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6846,16 +5885,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6864,7 +5900,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -6873,10 +5908,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -6886,20 +5919,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6922,13 +5951,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -6936,7 +5963,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -6950,21 +5976,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6972,8 +5994,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6981,24 +6002,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7010,16 +6027,13 @@ "namespaceselector": { "properties": { "any": { - "type": "boolean", - "description": "" + "type": "boolean" }, "matchNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7028,16 +6042,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7046,7 +6057,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -7064,7 +6074,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -7076,20 +6085,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7099,7 +6104,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -7108,7 +6112,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -7121,12 +6124,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7135,16 +6136,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7152,7 +6150,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -7161,34 +6158,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -7196,18 +6186,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -7215,16 +6202,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7232,28 +6216,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7272,20 +6250,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7294,11 +6268,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -7314,16 +6286,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7332,16 +6301,13 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "capacity": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -7350,7 +6316,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimCondition", @@ -7358,8 +6323,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7380,12 +6344,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7393,12 +6355,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7407,7 +6367,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -7416,7 +6375,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -7434,16 +6392,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7452,7 +6407,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -7461,7 +6415,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -7474,20 +6427,16 @@ "podmetricsendpoint": { "properties": { "honorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "honorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "interval": { - "type": "string", - "description": "" + "type": "string" }, "metricRelabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -7496,32 +6445,25 @@ }, "params": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "relabelings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -7529,12 +6471,10 @@ } }, "scheme": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -7547,13 +6487,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodMonitor", "required": true }, @@ -7572,13 +6510,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PodMonitor", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PodMonitor" @@ -7586,7 +6522,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodMonitorList", "required": true }, @@ -7600,8 +6535,7 @@ "podmonitorspec": { "properties": { "jobLabel": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/os_monitoring_v1_NamespaceSelector", @@ -7609,7 +6543,6 @@ }, "podMetricsEndpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PodMetricsEndpoint", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PodMetricsEndpoint" @@ -7617,16 +6550,13 @@ }, "podTargetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { @@ -7640,25 +6570,20 @@ "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -7671,17 +6596,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -7698,16 +6620,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7719,8 +6638,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -7732,32 +6650,27 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -7765,12 +6678,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -7783,13 +6694,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Prometheus", "required": true }, @@ -7812,13 +6721,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Prometheus", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Prometheus" @@ -7826,7 +6733,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PrometheusList", "required": true }, @@ -7841,13 +6747,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PrometheusRule", "required": true }, @@ -7865,12 +6769,10 @@ "prometheusruleexcludeconfig": { "properties": { "ruleName": { - "type": "string", - "description": "" + "type": "string" }, "ruleNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7879,13 +6781,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_PrometheusRule", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.PrometheusRule" @@ -7893,7 +6793,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PrometheusRuleList", "required": true }, @@ -7908,7 +6807,6 @@ "properties": { "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RuleGroup", @@ -7941,8 +6839,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.AlertingSpec" }, "allowOverlappingBlocks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiserverConfig": { "$ref": "#/definitions/os_monitoring_v1_APIServerConfig", @@ -7953,21 +6850,17 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.ArbitraryFSAccessThroughSMsConfig" }, "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "containers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -7975,50 +6868,39 @@ } }, "disableCompaction": { - "type": "boolean", - "description": "" + "type": "boolean" }, "enableAdminAPI": { - "type": "boolean", - "description": "" + "type": "boolean" }, "enforcedNamespaceLabel": { - "type": "string", - "description": "" + "type": "string" }, "enforcedSampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "evaluationInterval": { - "type": "string", - "description": "" + "type": "string" }, "externalLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "externalUrl": { - "type": "string", - "description": "" + "type": "string" }, "ignoreNamespaceSelectors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -8027,7 +6909,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -8035,37 +6916,29 @@ } }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overrideHonorLabels": { - "type": "boolean", - "description": "" + "type": "boolean" }, "overrideHonorTimestamps": { - "type": "boolean", - "description": "" + "type": "boolean" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "podMetadata": { "$ref": "#/definitions/os_monitoring_v1_EmbeddedObjectMetadata", @@ -8080,12 +6953,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "portName": { - "type": "string", - "description": "" + "type": "string" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "probeNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -8096,12 +6967,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "prometheusExternalLabelName": { - "type": "string", - "description": "" + "type": "string" }, "prometheusRulesExcludedFromEnforce": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_PrometheusRuleExcludeConfig", @@ -8113,12 +6982,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.QuerySpec" }, "queryLogFile": { - "type": "string", - "description": "" + "type": "string" }, "remoteRead": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RemoteReadSpec", @@ -8127,7 +6994,6 @@ }, "remoteWrite": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RemoteWriteSpec", @@ -8135,28 +7001,23 @@ } }, "replicaExternalLabelName": { - "type": "string", - "description": "" + "type": "string" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "resources": { "$ref": "#/definitions/kubernetes_core_ResourceRequirements", "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "retention": { - "type": "string", - "description": "" + "type": "string" }, "retentionSize": { - "type": "string", - "description": "" + "type": "string" }, "routePrefix": { - "type": "string", - "description": "" + "type": "string" }, "ruleNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -8171,20 +7032,16 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Rules" }, "scrapeInterval": { - "type": "string", - "description": "" + "type": "string" }, "scrapeTimeout": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "securityContext": { @@ -8192,8 +7049,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "serviceMonitorNamespaceSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -8204,16 +7060,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "storage": { "$ref": "#/definitions/os_monitoring_v1_StorageSpec", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.StorageSpec" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "thanos": { "$ref": "#/definitions/os_monitoring_v1_ThanosSpec", @@ -8221,7 +7075,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -8229,12 +7082,10 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -8243,7 +7094,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -8251,8 +7101,7 @@ } }, "walCompression": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8260,24 +7109,19 @@ "prometheusstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8285,8 +7129,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8294,20 +7137,16 @@ "queryspec": { "properties": { "lookbackDelta": { - "type": "string", - "description": "" + "type": "string" }, "maxConcurrency": { - "type": "integer", - "description": "" + "type": "integer" }, "maxSamples": { - "type": "integer", - "description": "" + "type": "integer" }, "timeout": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8315,36 +7154,28 @@ "queueconfig": { "properties": { "batchSendDeadline": { - "type": "string", - "description": "" + "type": "string" }, "capacity": { - "type": "integer", - "description": "" + "type": "integer" }, "maxBackoff": { - "type": "string", - "description": "" + "type": "string" }, "maxRetries": { - "type": "integer", - "description": "" + "type": "integer" }, "maxSamplesPerSend": { - "type": "integer", - "description": "" + "type": "integer" }, "maxShards": { - "type": "integer", - "description": "" + "type": "integer" }, "minBackoff": { - "type": "string", - "description": "" + "type": "string" }, "minShards": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8352,28 +7183,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8384,40 +7209,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8425,38 +7242,30 @@ "relabelconfig": { "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "modulus": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "regex": { - "type": "string", - "description": "" + "type": "string" }, "replacement": { - "type": "string", - "description": "" + "type": "string" }, "separator": { - "type": "string", - "description": "" + "type": "string" }, "sourceLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "targetLabel": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8468,35 +7277,27 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "readRecent": { - "type": "boolean", - "description": "" + "type": "boolean" }, "remoteTimeout": { - "type": "string", - "description": "" + "type": "string" }, "requiredMatchers": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -8505,8 +7306,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8518,40 +7318,33 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.BasicAuth" }, "bearerToken": { - "type": "string", - "description": "" + "type": "string" }, "bearerTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "proxyUrl": { - "type": "string", - "description": "" + "type": "string" }, "queueConfig": { "$ref": "#/definitions/os_monitoring_v1_QueueConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.QueueConfig" }, "remoteTimeout": { - "type": "string", - "description": "" + "type": "string" }, "tlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "url": { - "type": "string", - "description": "" + "type": "string" }, "writeRelabelConfigs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_monitoring_v1_RelabelConfig", @@ -8564,16 +7357,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8582,7 +7373,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -8591,7 +7381,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -8604,15 +7393,12 @@ "rule": { "properties": { "alert": { - "type": "string", - "description": "" + "type": "string" }, "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -8621,21 +7407,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "for": { - "type": "string", - "description": "" + "type": "string" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "record": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8643,20 +7425,16 @@ "rulegroup": { "properties": { "interval": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "partial_response_strategy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Rule", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Rule" @@ -8677,16 +7455,13 @@ "rulesalert": { "properties": { "forGracePeriod": { - "type": "string", - "description": "" + "type": "string" }, "forOutageTolerance": { - "type": "string", - "description": "" + "type": "string" }, "resendDelay": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8694,44 +7469,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8739,12 +7505,10 @@ "seccompprofile": { "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8752,12 +7516,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8765,16 +7527,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8796,7 +7555,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -8804,12 +7562,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8817,12 +7573,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -8830,12 +7584,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8843,37 +7595,30 @@ "securitycontext": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -8894,20 +7639,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8915,12 +7656,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8928,17 +7667,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8947,13 +7683,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceMonitor", "required": true }, @@ -8972,13 +7706,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "monitoring.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_ServiceMonitor", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.ServiceMonitor" @@ -8986,7 +7718,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceMonitorList", "required": true }, @@ -9001,15 +7732,13 @@ "properties": { "endpoints": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_monitoring_v1_Endpoint", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.Endpoint" } }, "jobLabel": { - "type": "string", - "description": "" + "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/os_monitoring_v1_NamespaceSelector", @@ -9017,16 +7746,13 @@ }, "podTargetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sampleLimit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { @@ -9035,11 +7761,9 @@ }, "targetLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9049,13 +7773,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -9063,25 +7785,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9089,16 +7807,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9107,7 +7822,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -9115,24 +7829,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9140,24 +7849,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9165,8 +7870,7 @@ "storagespec": { "properties": { "disableMountSubPath": { - "type": "boolean", - "description": "" + "type": "boolean" }, "emptyDir": { "$ref": "#/definitions/kubernetes_core_EmptyDirVolumeSource", @@ -9182,12 +7886,10 @@ "sysctl": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9195,8 +7897,7 @@ "tcpsocketaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -9208,32 +7909,26 @@ "thanosspec": { "properties": { "baseImage": { - "type": "string", - "description": "" + "type": "string" }, "grpcServerTlsConfig": { "$ref": "#/definitions/os_monitoring_v1_TLSConfig", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.TLSConfig" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "listenLocal": { - "type": "boolean", - "description": "" + "type": "boolean" }, "logFormat": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "minTime": { - "type": "string", - "description": "" + "type": "string" }, "objectStorageConfig": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", @@ -9244,20 +7939,17 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "sha": { - "type": "string", - "description": "" + "type": "string" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "tracingConfig": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9265,8 +7957,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9278,32 +7969,27 @@ "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.SecretOrConfigMap" }, "caFile": { - "type": "string", - "description": "" + "type": "string" }, "cert": { "$ref": "#/definitions/os_monitoring_v1_SecretOrConfigMap", "existingJavaType": "io.fabric8.openshift.api.model.monitoring.v1.SecretOrConfigMap" }, "certFile": { - "type": "string", - "description": "" + "type": "string" }, "insecureSkipVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "keyFile": { - "type": "string", - "description": "" + "type": "string" }, "keySecret": { "$ref": "#/definitions/kubernetes_core_SecretKeySelector", "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "serverName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9311,25 +7997,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9337,16 +8018,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9354,12 +8032,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9440,7 +8116,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -9494,12 +8169,10 @@ "volumedevice": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9507,28 +8180,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9678,20 +8345,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9703,8 +8366,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9712,16 +8374,13 @@ "windowssecuritycontextoptions": { "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/kube-schema.json index f72d82e733c..babf36021e0 100644 --- a/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/kube-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,11 +74,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -100,7 +88,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -109,15 +96,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -128,11 +112,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -141,10 +123,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -157,23 +137,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -185,17 +160,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -203,7 +175,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -221,24 +192,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -249,27 +215,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -284,20 +245,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -305,7 +262,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -314,34 +270,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -349,18 +298,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -368,16 +314,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -388,31 +331,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -423,7 +359,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -432,15 +367,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -451,17 +383,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -469,25 +398,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -498,19 +423,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -521,11 +442,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -533,24 +452,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -561,11 +475,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -576,15 +488,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +504,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -604,7 +512,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -613,43 +520,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -660,7 +557,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -683,11 +579,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -698,11 +592,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -722,11 +614,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -741,23 +631,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -769,11 +654,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -782,7 +665,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -798,11 +680,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -811,7 +691,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -827,7 +706,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -835,16 +713,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -855,11 +730,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -868,7 +741,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -884,15 +756,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -903,11 +773,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -916,7 +784,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -932,28 +799,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -964,15 +825,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -983,11 +842,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -998,15 +855,12 @@ }, "os_config_ConfigMapFileReference": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1017,19 +871,15 @@ }, "os_config_CustomTLSProfile": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1040,18 +890,14 @@ }, "os_config_DNSZone": { "type": "object", - "description": "", "properties": { "id": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1064,7 +910,6 @@ }, "os_config_IntermediateTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.IntermediateTLSProfile", "javaInterfaces": [ @@ -1073,7 +918,6 @@ }, "os_config_ModernTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.ModernTLSProfile", "javaInterfaces": [ @@ -1082,7 +926,6 @@ }, "os_config_OldTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OldTLSProfile", "javaInterfaces": [ @@ -1091,11 +934,9 @@ }, "os_config_SecretNameReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1106,19 +947,15 @@ }, "os_config_TLSProfileSpec": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1129,7 +966,6 @@ }, "os_config_TLSSecurityProfile": { "type": "object", - "description": "", "properties": { "custom": { "$ref": "#/definitions/os_config_CustomTLSProfile", @@ -1148,8 +984,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OldTLSProfile" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1160,17 +995,14 @@ }, "os_imageregistry_v1_ImagePruner": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "imageregistry.operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImagePruner", "required": true }, @@ -1195,17 +1027,14 @@ }, "os_imageregistry_v1_ImagePrunerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "imageregistry.operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_imageregistry_v1_ImagePruner", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ImagePruner" @@ -1213,7 +1042,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImagePrunerList", "required": true }, @@ -1231,27 +1059,22 @@ }, "os_imageregistry_v1_ImagePrunerSpec": { "type": "object", - "description": "", "properties": { "affinity": { "$ref": "#/definitions/kubernetes_core_Affinity", "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "failedJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "ignoreInvalidImageReferences": { - "type": "boolean", - "description": "" + "type": "boolean" }, "keepTagRevisions": { - "type": "integer", - "description": "" + "type": "integer" }, "keepYoungerThan": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "keepYoungerThanDuration": { @@ -1260,10 +1083,8 @@ }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -1272,20 +1093,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "successfulJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "suspend": { - "type": "boolean", - "description": "" + "type": "boolean" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -1301,11 +1118,9 @@ }, "os_imageregistry_v1_ImagePrunerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1314,7 +1129,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1326,7 +1140,6 @@ }, "os_operator_v1_AWSClassicLoadBalancerParameters": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.AWSClassicLoadBalancerParameters", "javaInterfaces": [ @@ -1335,7 +1148,6 @@ }, "os_operator_v1_AWSLoadBalancerParameters": { "type": "object", - "description": "", "properties": { "classicLoadBalancer": { "$ref": "#/definitions/os_operator_v1_AWSClassicLoadBalancerParameters", @@ -1346,8 +1158,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.AWSNetworkLoadBalancerParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1358,7 +1169,6 @@ }, "os_operator_v1_AWSNetworkLoadBalancerParameters": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.AWSNetworkLoadBalancerParameters", "javaInterfaces": [ @@ -1367,7 +1177,6 @@ }, "os_operator_v1_AccessLogging": { "type": "object", - "description": "", "properties": { "destination": { "$ref": "#/definitions/os_operator_v1_LoggingDestination", @@ -1375,7 +1184,6 @@ }, "httpCaptureCookies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPCookie", @@ -1387,8 +1195,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IngressControllerCaptureHTTPHeaders" }, "httpLogFormat": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1399,27 +1206,22 @@ }, "os_operator_v1_AdditionalNetworkDefinition": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "rawCNIConfig": { - "type": "string", - "description": "" + "type": "string" }, "simpleMacvlanConfig": { "$ref": "#/definitions/os_operator_v1_SimpleMacvlanConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.SimpleMacvlanConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1430,17 +1232,14 @@ }, "os_operator_v1_Authentication": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Authentication", "required": true }, @@ -1465,17 +1264,14 @@ }, "os_operator_v1_AuthenticationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Authentication", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Authentication" @@ -1483,7 +1279,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AuthenticationList", "required": true }, @@ -1501,23 +1296,19 @@ }, "os_operator_v1_AuthenticationSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -1532,11 +1323,9 @@ }, "os_operator_v1_AuthenticationStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1545,7 +1334,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -1553,8 +1341,7 @@ } }, "managingOAuthAPIServer": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oauthAPIServer": { "$ref": "#/definitions/os_operator_v1_OAuthAPIServerStatus", @@ -1562,16 +1349,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1582,17 +1366,14 @@ }, "os_operator_v1_CSISnapshotController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSISnapshotController", "required": true }, @@ -1617,17 +1398,14 @@ }, "os_operator_v1_CSISnapshotControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_CSISnapshotController", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.CSISnapshotController" @@ -1635,7 +1413,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSISnapshotControllerList", "required": true }, @@ -1653,23 +1430,19 @@ }, "os_operator_v1_CSISnapshotControllerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -1684,11 +1457,9 @@ }, "os_operator_v1_CSISnapshotControllerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1697,7 +1468,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -1706,16 +1476,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1726,15 +1493,12 @@ }, "os_operator_v1_ClusterNetworkEntry": { "type": "object", - "description": "", "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "hostPrefix": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1745,17 +1509,14 @@ }, "os_operator_v1_Console": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Console", "required": true }, @@ -1780,11 +1541,9 @@ }, "os_operator_v1_ConsoleConfigRoute": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "secret": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -1799,23 +1558,19 @@ }, "os_operator_v1_ConsoleCustomization": { "type": "object", - "description": "", "properties": { "brand": { - "type": "string", - "description": "" + "type": "string" }, "customLogoFile": { "$ref": "#/definitions/os_config_ConfigMapFileReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapFileReference" }, "customProductName": { - "type": "string", - "description": "" + "type": "string" }, "documentationBaseURL": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1826,17 +1581,14 @@ }, "os_operator_v1_ConsoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Console", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Console" @@ -1844,7 +1596,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleList", "required": true }, @@ -1862,7 +1613,6 @@ }, "os_operator_v1_ConsoleProviders": { "type": "object", - "description": "", "properties": { "statuspage": { "$ref": "#/definitions/os_operator_v1_StatuspageProvider", @@ -1877,27 +1627,23 @@ }, "os_operator_v1_ConsoleSpec": { "type": "object", - "description": "", "properties": { "customization": { "$ref": "#/definitions/os_operator_v1_ConsoleCustomization", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ConsoleCustomization" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "providers": { "$ref": "#/definitions/os_operator_v1_ConsoleProviders", @@ -1920,11 +1666,9 @@ }, "os_operator_v1_ConsoleStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1933,7 +1677,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -1942,16 +1685,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1962,7 +1702,6 @@ }, "os_operator_v1_ContainerLoggingDestinationParameters": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.ContainerLoggingDestinationParameters", "javaInterfaces": [ @@ -1971,17 +1710,14 @@ }, "os_operator_v1_DNS": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DNS", "required": true }, @@ -2006,17 +1742,14 @@ }, "os_operator_v1_DNSList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_DNS", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DNS" @@ -2024,7 +1757,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DNSList", "required": true }, @@ -2042,17 +1774,14 @@ }, "os_operator_v1_DNSRecord": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "ingress.operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DNSRecord", "required": true }, @@ -2078,17 +1807,14 @@ }, "os_operator_v1_DNSRecordList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "ingress.operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_DNSRecord", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DNSRecord" @@ -2096,7 +1822,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DNSRecordList", "required": true }, @@ -2114,27 +1839,21 @@ }, "os_operator_v1_DNSRecordSpec": { "type": "object", - "description": "", "properties": { "dnsName": { - "type": "string", - "description": "" + "type": "string" }, "recordTTL": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "recordType": { - "type": "string", - "description": "" + "type": "string" }, "targets": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2146,16 +1865,13 @@ }, "os_operator_v1_DNSRecordStatus": { "type": "object", - "description": "", "properties": { "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "zones": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_DNSZoneStatus", @@ -2171,11 +1887,9 @@ }, "os_operator_v1_DNSSpec": { "type": "object", - "description": "", "properties": { "servers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_Server", @@ -2191,19 +1905,15 @@ }, "os_operator_v1_DNSStatus": { "type": "object", - "description": "", "properties": { "clusterDomain": { - "type": "string", - "description": "" + "type": "string" }, "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -2219,27 +1929,22 @@ }, "os_operator_v1_DNSZoneCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2250,11 +1955,9 @@ }, "os_operator_v1_DNSZoneStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_DNSZoneCondition", @@ -2274,7 +1977,6 @@ }, "os_operator_v1_DefaultNetworkDefinition": { "type": "object", - "description": "", "properties": { "kuryrConfig": { "$ref": "#/definitions/os_operator_v1_KuryrConfig", @@ -2289,8 +1991,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OVNKubernetesConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2301,7 +2002,6 @@ }, "os_operator_v1_EndpointPublishingStrategy": { "type": "object", - "description": "", "properties": { "hostNetwork": { "$ref": "#/definitions/os_operator_v1_HostNetworkStrategy", @@ -2320,8 +2020,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.PrivateStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2332,17 +2031,14 @@ }, "os_operator_v1_Etcd": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Etcd", "required": true }, @@ -2367,17 +2063,14 @@ }, "os_operator_v1_EtcdList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Etcd", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Etcd" @@ -2385,7 +2078,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EtcdList", "required": true }, @@ -2403,35 +2095,28 @@ }, "os_operator_v1_EtcdSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -2446,11 +2131,9 @@ }, "os_operator_v1_EtcdStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -2459,7 +2142,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -2467,16 +2149,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -2485,16 +2164,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2505,14 +2181,11 @@ }, "os_operator_v1_ForwardPlugin": { "type": "object", - "description": "", "properties": { "upstreams": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2524,32 +2197,25 @@ }, "os_operator_v1_GenerationStatus": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "hash": { - "type": "string", - "description": "" + "type": "string" }, "lastGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2560,7 +2226,6 @@ }, "os_operator_v1_HostNetworkStrategy": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.HostNetworkStrategy", "javaInterfaces": [ @@ -2569,19 +2234,16 @@ }, "os_operator_v1_HybridOverlayConfig": { "type": "object", - "description": "", "properties": { "hybridClusterNetwork": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ClusterNetworkEntry" } }, "hybridOverlayVXLANPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2592,15 +2254,13 @@ }, "os_operator_v1_IPAMConfig": { "type": "object", - "description": "", "properties": { "staticIPAMConfig": { "$ref": "#/definitions/os_operator_v1_StaticIPAMConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.StaticIPAMConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2611,17 +2271,14 @@ }, "os_operator_v1_IngressController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressController", "required": true }, @@ -2647,23 +2304,18 @@ }, "os_operator_v1_IngressControllerCaptureHTTPCookie": { "type": "object", - "description": "", "properties": { "matchType": { - "type": "string", - "description": "" + "type": "string" }, "maxLength": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namePrefix": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2674,15 +2326,12 @@ }, "os_operator_v1_IngressControllerCaptureHTTPHeader": { "type": "object", - "description": "", "properties": { "maxLength": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2693,11 +2342,9 @@ }, "os_operator_v1_IngressControllerCaptureHTTPHeaders": { "type": "object", - "description": "", "properties": { "request": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPHeader", @@ -2706,7 +2353,6 @@ }, "response": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPHeader", @@ -2722,11 +2368,9 @@ }, "os_operator_v1_IngressControllerHTTPHeaders": { "type": "object", - "description": "", "properties": { "forwardedHeaderPolicy": { - "type": "string", - "description": "" + "type": "string" }, "uniqueId": { "$ref": "#/definitions/os_operator_v1_IngressControllerHTTPUniqueIdHeaderPolicy", @@ -2741,15 +2385,12 @@ }, "os_operator_v1_IngressControllerHTTPUniqueIdHeaderPolicy": { "type": "object", - "description": "", "properties": { "format": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2760,17 +2401,14 @@ }, "os_operator_v1_IngressControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_IngressController", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IngressController" @@ -2778,7 +2416,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressControllerList", "required": true }, @@ -2796,7 +2433,6 @@ }, "os_operator_v1_IngressControllerLogging": { "type": "object", - "description": "", "properties": { "access": { "$ref": "#/definitions/os_operator_v1_AccessLogging", @@ -2811,15 +2447,13 @@ }, "os_operator_v1_IngressControllerSpec": { "type": "object", - "description": "", "properties": { "defaultCertificate": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "domain": { - "type": "string", - "description": "" + "type": "string" }, "endpointPublishingStrategy": { "$ref": "#/definitions/os_operator_v1_EndpointPublishingStrategy", @@ -2842,8 +2476,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.NodePlacement" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "routeAdmission": { "$ref": "#/definitions/os_operator_v1_RouteAdmissionPolicy", @@ -2866,15 +2499,12 @@ }, "os_operator_v1_IngressControllerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -2882,8 +2512,7 @@ } }, "domain": { - "type": "string", - "description": "" + "type": "string" }, "endpointPublishingStrategy": { "$ref": "#/definitions/os_operator_v1_EndpointPublishingStrategy", @@ -2891,12 +2520,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { - "type": "string", - "description": "" + "type": "string" }, "tlsProfile": { "$ref": "#/definitions/os_config_TLSProfileSpec", @@ -2911,17 +2538,14 @@ }, "os_operator_v1_KubeAPIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeAPIServer", "required": true }, @@ -2946,17 +2570,14 @@ }, "os_operator_v1_KubeAPIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeAPIServer" @@ -2964,7 +2585,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeAPIServerList", "required": true }, @@ -2982,35 +2602,28 @@ }, "os_operator_v1_KubeAPIServerSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3025,11 +2638,9 @@ }, "os_operator_v1_KubeAPIServerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3038,7 +2649,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3046,16 +2656,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -3064,16 +2671,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3084,17 +2688,14 @@ }, "os_operator_v1_KubeControllerManager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeControllerManager", "required": true }, @@ -3119,17 +2720,14 @@ }, "os_operator_v1_KubeControllerManagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeControllerManager" @@ -3137,7 +2735,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeControllerManagerList", "required": true }, @@ -3155,35 +2752,28 @@ }, "os_operator_v1_KubeControllerManagerSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3198,11 +2788,9 @@ }, "os_operator_v1_KubeControllerManagerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3211,7 +2799,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3219,16 +2806,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -3237,16 +2821,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3257,17 +2838,14 @@ }, "os_operator_v1_KubeScheduler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeScheduler", "required": true }, @@ -3292,17 +2870,14 @@ }, "os_operator_v1_KubeSchedulerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeScheduler", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeScheduler" @@ -3310,7 +2885,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeSchedulerList", "required": true }, @@ -3328,35 +2902,28 @@ }, "os_operator_v1_KubeSchedulerSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3371,11 +2938,9 @@ }, "os_operator_v1_KubeSchedulerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3384,7 +2949,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3392,16 +2956,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -3410,16 +2971,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3430,17 +2988,14 @@ }, "os_operator_v1_KubeStorageVersionMigrator": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeStorageVersionMigrator", "required": true }, @@ -3465,17 +3020,14 @@ }, "os_operator_v1_KubeStorageVersionMigratorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeStorageVersionMigrator", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeStorageVersionMigrator" @@ -3483,7 +3035,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeStorageVersionMigratorList", "required": true }, @@ -3501,23 +3052,19 @@ }, "os_operator_v1_KubeStorageVersionMigratorSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3532,11 +3079,9 @@ }, "os_operator_v1_KubeStorageVersionMigratorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3545,7 +3090,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3554,16 +3098,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3574,35 +3115,27 @@ }, "os_operator_v1_KuryrConfig": { "type": "object", - "description": "", "properties": { "controllerProbesPort": { - "type": "integer", - "description": "" + "type": "integer" }, "daemonProbesPort": { - "type": "integer", - "description": "" + "type": "integer" }, "enablePortPoolsPrepopulation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "openStackServiceNetwork": { - "type": "string", - "description": "" + "type": "string" }, "poolBatchPorts": { - "type": "integer", - "description": "" + "type": "integer" }, "poolMaxPorts": { - "type": "integer", - "description": "" + "type": "integer" }, "poolMinPorts": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3613,15 +3146,13 @@ }, "os_operator_v1_LoadBalancerStrategy": { "type": "object", - "description": "", "properties": { "providerParameters": { "$ref": "#/definitions/os_operator_v1_ProviderLoadBalancerParameters", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ProviderLoadBalancerParameters" }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3632,7 +3163,6 @@ }, "os_operator_v1_LoggingDestination": { "type": "object", - "description": "", "properties": { "container": { "$ref": "#/definitions/os_operator_v1_ContainerLoggingDestinationParameters", @@ -3643,8 +3173,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.SyslogLoggingDestinationParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3655,17 +3184,14 @@ }, "os_operator_v1_Network": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Network", "required": true }, @@ -3690,17 +3216,14 @@ }, "os_operator_v1_NetworkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Network", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Network" @@ -3708,7 +3231,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkList", "required": true }, @@ -3726,11 +3248,9 @@ }, "os_operator_v1_NetworkSpec": { "type": "object", - "description": "", "properties": { "additionalNetworks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_AdditionalNetworkDefinition", @@ -3739,7 +3259,6 @@ }, "clusterNetwork": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ClusterNetworkEntry" @@ -3750,27 +3269,22 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DefaultNetworkDefinition" }, "deployKubeProxy": { - "type": "boolean", - "description": "" + "type": "boolean" }, "disableMultiNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kubeProxyConfig": { "$ref": "#/definitions/os_operator_v1_ProxyConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ProxyConfig" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "serviceNetwork": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3782,7 +3296,6 @@ }, "os_operator_v1_NetworkStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.NetworkStatus", "javaInterfaces": [ @@ -3791,7 +3304,6 @@ }, "os_operator_v1_NodePlacement": { "type": "object", - "description": "", "properties": { "nodeSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3799,7 +3311,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3815,7 +3326,6 @@ }, "os_operator_v1_NodePortStrategy": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.NodePortStrategy", "javaInterfaces": [ @@ -3824,32 +3334,25 @@ }, "os_operator_v1_NodeStatus": { "type": "object", - "description": "", "properties": { "currentRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "lastFailedRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "lastFailedRevisionErrors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRevision": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3860,11 +3363,9 @@ }, "os_operator_v1_OAuthAPIServerStatus": { "type": "object", - "description": "", "properties": { "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3875,19 +3376,16 @@ }, "os_operator_v1_OVNKubernetesConfig": { "type": "object", - "description": "", "properties": { "genevePort": { - "type": "integer", - "description": "" + "type": "integer" }, "hybridOverlayConfig": { "$ref": "#/definitions/os_operator_v1_HybridOverlayConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.HybridOverlayConfig" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3898,17 +3396,14 @@ }, "os_operator_v1_OpenShiftAPIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OpenShiftAPIServer", "required": true }, @@ -3933,17 +3428,14 @@ }, "os_operator_v1_OpenShiftAPIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_OpenShiftAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OpenShiftAPIServer" @@ -3951,7 +3443,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OpenShiftAPIServerList", "required": true }, @@ -3969,23 +3460,19 @@ }, "os_operator_v1_OpenShiftAPIServerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4000,11 +3487,9 @@ }, "os_operator_v1_OpenShiftAPIServerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4013,7 +3498,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4021,21 +3505,17 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4046,17 +3526,14 @@ }, "os_operator_v1_OpenShiftControllerManager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OpenShiftControllerManager", "required": true }, @@ -4081,17 +3558,14 @@ }, "os_operator_v1_OpenShiftControllerManagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_OpenShiftControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OpenShiftControllerManager" @@ -4099,7 +3573,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OpenShiftControllerManagerList", "required": true }, @@ -4117,23 +3590,19 @@ }, "os_operator_v1_OpenShiftControllerManagerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4148,11 +3617,9 @@ }, "os_operator_v1_OpenShiftControllerManagerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4161,7 +3628,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4170,16 +3636,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4190,27 +3653,21 @@ }, "os_operator_v1_OpenShiftSDNConfig": { "type": "object", - "description": "", "properties": { "enableUnidling": { - "type": "boolean", - "description": "" + "type": "boolean" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" }, "useExternalOpenvswitch": { - "type": "boolean", - "description": "" + "type": "boolean" }, "vxlanPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4221,27 +3678,22 @@ }, "os_operator_v1_OperatorCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4252,23 +3704,19 @@ }, "os_operator_v1_OperatorSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4283,11 +3731,9 @@ }, "os_operator_v1_OperatorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4296,7 +3742,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4305,16 +3750,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4325,7 +3767,6 @@ }, "os_operator_v1_PrivateStrategy": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.PrivateStrategy", "javaInterfaces": [ @@ -4334,15 +3775,13 @@ }, "os_operator_v1_ProviderLoadBalancerParameters": { "type": "object", - "description": "", "properties": { "aws": { "$ref": "#/definitions/os_operator_v1_AWSLoadBalancerParameters", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.AWSLoadBalancerParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4353,25 +3792,19 @@ }, "os_operator_v1_ProxyConfig": { "type": "object", - "description": "", "properties": { "bindAddress": { - "type": "string", - "description": "" + "type": "string" }, "iptablesSyncPeriod": { - "type": "string", - "description": "" + "type": "string" }, "proxyArguments": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -4385,15 +3818,12 @@ }, "os_operator_v1_RouteAdmissionPolicy": { "type": "object", - "description": "", "properties": { "namespaceOwnership": { - "type": "string", - "description": "" + "type": "string" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4404,22 +3834,18 @@ }, "os_operator_v1_Server": { "type": "object", - "description": "", "properties": { "forwardPlugin": { "$ref": "#/definitions/os_operator_v1_ForwardPlugin", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ForwardPlugin" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "zones": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4431,17 +3857,14 @@ }, "os_operator_v1_ServiceCA": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCA", "required": true }, @@ -4466,17 +3889,14 @@ }, "os_operator_v1_ServiceCAList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCA", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCA" @@ -4484,7 +3904,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCAList", "required": true }, @@ -4502,23 +3921,19 @@ }, "os_operator_v1_ServiceCASpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4533,11 +3948,9 @@ }, "os_operator_v1_ServiceCAStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4546,7 +3959,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4555,16 +3967,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4575,17 +3984,14 @@ }, "os_operator_v1_ServiceCatalogAPIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogAPIServer", "required": true }, @@ -4610,17 +4016,14 @@ }, "os_operator_v1_ServiceCatalogAPIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCatalogAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCatalogAPIServer" @@ -4628,7 +4031,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogAPIServerList", "required": true }, @@ -4646,23 +4048,19 @@ }, "os_operator_v1_ServiceCatalogAPIServerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4677,11 +4075,9 @@ }, "os_operator_v1_ServiceCatalogAPIServerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4690,7 +4086,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4699,16 +4094,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4719,17 +4111,14 @@ }, "os_operator_v1_ServiceCatalogControllerManager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogControllerManager", "required": true }, @@ -4754,17 +4143,14 @@ }, "os_operator_v1_ServiceCatalogControllerManagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCatalogControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCatalogControllerManager" @@ -4772,7 +4158,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogControllerManagerList", "required": true }, @@ -4790,23 +4175,19 @@ }, "os_operator_v1_ServiceCatalogControllerManagerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4821,11 +4202,9 @@ }, "os_operator_v1_ServiceCatalogControllerManagerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4834,7 +4213,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4843,16 +4221,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4863,23 +4238,19 @@ }, "os_operator_v1_SimpleMacvlanConfig": { "type": "object", - "description": "", "properties": { "ipamConfig": { "$ref": "#/definitions/os_operator_v1_IPAMConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IPAMConfig" }, "master": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4890,15 +4261,12 @@ }, "os_operator_v1_StaticIPAMAddresses": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4909,11 +4277,9 @@ }, "os_operator_v1_StaticIPAMConfig": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_StaticIPAMAddresses", @@ -4926,7 +4292,6 @@ }, "routes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_StaticIPAMRoutes", @@ -4942,28 +4307,22 @@ }, "os_operator_v1_StaticIPAMDNS": { "type": "object", - "description": "", "properties": { "domain": { - "type": "string", - "description": "" + "type": "string" }, "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "search": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4975,15 +4334,12 @@ }, "os_operator_v1_StaticIPAMRoutes": { "type": "object", - "description": "", "properties": { "destination": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4994,35 +4350,28 @@ }, "os_operator_v1_StaticPodOperatorSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -5037,11 +4386,9 @@ }, "os_operator_v1_StaticPodOperatorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -5050,7 +4397,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -5058,16 +4404,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -5076,16 +4419,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5096,11 +4436,9 @@ }, "os_operator_v1_StatuspageProvider": { "type": "object", - "description": "", "properties": { "pageID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5111,19 +4449,15 @@ }, "os_operator_v1_SyslogLoggingDestinationParameters": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "facility": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -5134,17 +4468,14 @@ }, "os_operator_v1alpha1_ImageContentSourcePolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageContentSourcePolicy", "required": true }, @@ -5165,17 +4496,14 @@ }, "os_operator_v1alpha1_ImageContentSourcePolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1alpha1_ImageContentSourcePolicy", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1alpha1.ImageContentSourcePolicy" @@ -5183,7 +4511,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageContentSourcePolicyList", "required": true }, @@ -5201,11 +4528,9 @@ }, "os_operator_v1alpha1_ImageContentSourcePolicySpec": { "type": "object", - "description": "", "properties": { "repositoryDigestMirrors": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1alpha1_RepositoryDigestMirrors", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1alpha1.RepositoryDigestMirrors" @@ -5220,19 +4545,15 @@ }, "os_operator_v1alpha1_RepositoryDigestMirrors": { "type": "object", - "description": "", "properties": { "mirrors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "source": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/validation-schema.json index fcefcf04201..bbcabdccf58 100644 --- a/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/openshift-model-operator/src/main/resources/schema/validation-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,11 +74,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -100,7 +88,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -109,15 +96,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -128,11 +112,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -141,10 +123,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -157,23 +137,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -185,17 +160,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -203,7 +175,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -221,24 +192,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -249,27 +215,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -284,20 +245,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -305,7 +262,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -314,34 +270,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -349,18 +298,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -368,16 +314,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -388,31 +331,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -423,7 +359,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -432,15 +367,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -451,17 +383,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -469,25 +398,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -498,19 +423,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -521,11 +442,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -533,24 +452,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -561,11 +475,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -576,15 +488,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -595,7 +504,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -604,7 +512,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -613,43 +520,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -660,7 +557,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -683,11 +579,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -698,11 +592,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -722,11 +614,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -741,23 +631,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -769,11 +654,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -782,7 +665,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -798,11 +680,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -811,7 +691,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -827,7 +706,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -835,16 +713,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -855,11 +730,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -868,7 +741,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -884,15 +756,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -903,11 +773,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -916,7 +784,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -932,28 +799,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -964,15 +825,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -983,11 +842,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -998,15 +855,12 @@ }, "os_config_ConfigMapFileReference": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1017,19 +871,15 @@ }, "os_config_CustomTLSProfile": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1040,18 +890,14 @@ }, "os_config_DNSZone": { "type": "object", - "description": "", "properties": { "id": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1064,7 +910,6 @@ }, "os_config_IntermediateTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.IntermediateTLSProfile", "javaInterfaces": [ @@ -1073,7 +918,6 @@ }, "os_config_ModernTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.ModernTLSProfile", "javaInterfaces": [ @@ -1082,7 +926,6 @@ }, "os_config_OldTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OldTLSProfile", "javaInterfaces": [ @@ -1091,11 +934,9 @@ }, "os_config_SecretNameReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1106,19 +947,15 @@ }, "os_config_TLSProfileSpec": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1129,7 +966,6 @@ }, "os_config_TLSSecurityProfile": { "type": "object", - "description": "", "properties": { "custom": { "$ref": "#/definitions/os_config_CustomTLSProfile", @@ -1148,8 +984,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OldTLSProfile" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1160,17 +995,14 @@ }, "os_imageregistry_v1_ImagePruner": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "imageregistry.operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImagePruner", "required": true }, @@ -1195,17 +1027,14 @@ }, "os_imageregistry_v1_ImagePrunerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "imageregistry.operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_imageregistry_v1_ImagePruner", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ImagePruner" @@ -1213,7 +1042,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImagePrunerList", "required": true }, @@ -1231,27 +1059,22 @@ }, "os_imageregistry_v1_ImagePrunerSpec": { "type": "object", - "description": "", "properties": { "affinity": { "$ref": "#/definitions/kubernetes_core_Affinity", "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "failedJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "ignoreInvalidImageReferences": { - "type": "boolean", - "description": "" + "type": "boolean" }, "keepTagRevisions": { - "type": "integer", - "description": "" + "type": "integer" }, "keepYoungerThan": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "keepYoungerThanDuration": { @@ -1260,10 +1083,8 @@ }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -1272,20 +1093,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "successfulJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "suspend": { - "type": "boolean", - "description": "" + "type": "boolean" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -1301,11 +1118,9 @@ }, "os_imageregistry_v1_ImagePrunerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1314,7 +1129,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1326,7 +1140,6 @@ }, "os_operator_v1_AWSClassicLoadBalancerParameters": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.AWSClassicLoadBalancerParameters", "javaInterfaces": [ @@ -1335,7 +1148,6 @@ }, "os_operator_v1_AWSLoadBalancerParameters": { "type": "object", - "description": "", "properties": { "classicLoadBalancer": { "$ref": "#/definitions/os_operator_v1_AWSClassicLoadBalancerParameters", @@ -1346,8 +1158,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.AWSNetworkLoadBalancerParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1358,7 +1169,6 @@ }, "os_operator_v1_AWSNetworkLoadBalancerParameters": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.AWSNetworkLoadBalancerParameters", "javaInterfaces": [ @@ -1367,7 +1177,6 @@ }, "os_operator_v1_AccessLogging": { "type": "object", - "description": "", "properties": { "destination": { "$ref": "#/definitions/os_operator_v1_LoggingDestination", @@ -1375,7 +1184,6 @@ }, "httpCaptureCookies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPCookie", @@ -1387,8 +1195,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IngressControllerCaptureHTTPHeaders" }, "httpLogFormat": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1399,27 +1206,22 @@ }, "os_operator_v1_AdditionalNetworkDefinition": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "rawCNIConfig": { - "type": "string", - "description": "" + "type": "string" }, "simpleMacvlanConfig": { "$ref": "#/definitions/os_operator_v1_SimpleMacvlanConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.SimpleMacvlanConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1430,17 +1232,14 @@ }, "os_operator_v1_Authentication": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Authentication", "required": true }, @@ -1465,17 +1264,14 @@ }, "os_operator_v1_AuthenticationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Authentication", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Authentication" @@ -1483,7 +1279,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AuthenticationList", "required": true }, @@ -1501,23 +1296,19 @@ }, "os_operator_v1_AuthenticationSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -1532,11 +1323,9 @@ }, "os_operator_v1_AuthenticationStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1545,7 +1334,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -1553,8 +1341,7 @@ } }, "managingOAuthAPIServer": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oauthAPIServer": { "$ref": "#/definitions/os_operator_v1_OAuthAPIServerStatus", @@ -1562,16 +1349,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1582,17 +1366,14 @@ }, "os_operator_v1_CSISnapshotController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSISnapshotController", "required": true }, @@ -1617,17 +1398,14 @@ }, "os_operator_v1_CSISnapshotControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_CSISnapshotController", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.CSISnapshotController" @@ -1635,7 +1413,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSISnapshotControllerList", "required": true }, @@ -1653,23 +1430,19 @@ }, "os_operator_v1_CSISnapshotControllerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -1684,11 +1457,9 @@ }, "os_operator_v1_CSISnapshotControllerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1697,7 +1468,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -1706,16 +1476,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1726,15 +1493,12 @@ }, "os_operator_v1_ClusterNetworkEntry": { "type": "object", - "description": "", "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "hostPrefix": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -1745,17 +1509,14 @@ }, "os_operator_v1_Console": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Console", "required": true }, @@ -1780,11 +1541,9 @@ }, "os_operator_v1_ConsoleConfigRoute": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "secret": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -1799,23 +1558,19 @@ }, "os_operator_v1_ConsoleCustomization": { "type": "object", - "description": "", "properties": { "brand": { - "type": "string", - "description": "" + "type": "string" }, "customLogoFile": { "$ref": "#/definitions/os_config_ConfigMapFileReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapFileReference" }, "customProductName": { - "type": "string", - "description": "" + "type": "string" }, "documentationBaseURL": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1826,17 +1581,14 @@ }, "os_operator_v1_ConsoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Console", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Console" @@ -1844,7 +1596,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleList", "required": true }, @@ -1862,7 +1613,6 @@ }, "os_operator_v1_ConsoleProviders": { "type": "object", - "description": "", "properties": { "statuspage": { "$ref": "#/definitions/os_operator_v1_StatuspageProvider", @@ -1877,27 +1627,23 @@ }, "os_operator_v1_ConsoleSpec": { "type": "object", - "description": "", "properties": { "customization": { "$ref": "#/definitions/os_operator_v1_ConsoleCustomization", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ConsoleCustomization" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "providers": { "$ref": "#/definitions/os_operator_v1_ConsoleProviders", @@ -1920,11 +1666,9 @@ }, "os_operator_v1_ConsoleStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -1933,7 +1677,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -1942,16 +1685,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1962,7 +1702,6 @@ }, "os_operator_v1_ContainerLoggingDestinationParameters": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.ContainerLoggingDestinationParameters", "javaInterfaces": [ @@ -1971,17 +1710,14 @@ }, "os_operator_v1_DNS": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DNS", "required": true }, @@ -2006,17 +1742,14 @@ }, "os_operator_v1_DNSList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_DNS", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DNS" @@ -2024,7 +1757,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DNSList", "required": true }, @@ -2042,17 +1774,14 @@ }, "os_operator_v1_DNSRecord": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "ingress.operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DNSRecord", "required": true }, @@ -2078,17 +1807,14 @@ }, "os_operator_v1_DNSRecordList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "ingress.operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_DNSRecord", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DNSRecord" @@ -2096,7 +1822,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DNSRecordList", "required": true }, @@ -2114,27 +1839,21 @@ }, "os_operator_v1_DNSRecordSpec": { "type": "object", - "description": "", "properties": { "dnsName": { - "type": "string", - "description": "" + "type": "string" }, "recordTTL": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "recordType": { - "type": "string", - "description": "" + "type": "string" }, "targets": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2146,16 +1865,13 @@ }, "os_operator_v1_DNSRecordStatus": { "type": "object", - "description": "", "properties": { "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "zones": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_DNSZoneStatus", @@ -2171,11 +1887,9 @@ }, "os_operator_v1_DNSSpec": { "type": "object", - "description": "", "properties": { "servers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_Server", @@ -2191,19 +1905,15 @@ }, "os_operator_v1_DNSStatus": { "type": "object", - "description": "", "properties": { "clusterDomain": { - "type": "string", - "description": "" + "type": "string" }, "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -2219,27 +1929,22 @@ }, "os_operator_v1_DNSZoneCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2250,11 +1955,9 @@ }, "os_operator_v1_DNSZoneStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_DNSZoneCondition", @@ -2274,7 +1977,6 @@ }, "os_operator_v1_DefaultNetworkDefinition": { "type": "object", - "description": "", "properties": { "kuryrConfig": { "$ref": "#/definitions/os_operator_v1_KuryrConfig", @@ -2289,8 +1991,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OVNKubernetesConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2301,7 +2002,6 @@ }, "os_operator_v1_EndpointPublishingStrategy": { "type": "object", - "description": "", "properties": { "hostNetwork": { "$ref": "#/definitions/os_operator_v1_HostNetworkStrategy", @@ -2320,8 +2020,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.PrivateStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2332,17 +2031,14 @@ }, "os_operator_v1_Etcd": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Etcd", "required": true }, @@ -2367,17 +2063,14 @@ }, "os_operator_v1_EtcdList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Etcd", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Etcd" @@ -2385,7 +2078,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EtcdList", "required": true }, @@ -2403,35 +2095,28 @@ }, "os_operator_v1_EtcdSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -2446,11 +2131,9 @@ }, "os_operator_v1_EtcdStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -2459,7 +2142,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -2467,16 +2149,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -2485,16 +2164,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2505,14 +2181,11 @@ }, "os_operator_v1_ForwardPlugin": { "type": "object", - "description": "", "properties": { "upstreams": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2524,32 +2197,25 @@ }, "os_operator_v1_GenerationStatus": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "hash": { - "type": "string", - "description": "" + "type": "string" }, "lastGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2560,7 +2226,6 @@ }, "os_operator_v1_HostNetworkStrategy": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.HostNetworkStrategy", "javaInterfaces": [ @@ -2569,19 +2234,16 @@ }, "os_operator_v1_HybridOverlayConfig": { "type": "object", - "description": "", "properties": { "hybridClusterNetwork": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ClusterNetworkEntry" } }, "hybridOverlayVXLANPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -2592,15 +2254,13 @@ }, "os_operator_v1_IPAMConfig": { "type": "object", - "description": "", "properties": { "staticIPAMConfig": { "$ref": "#/definitions/os_operator_v1_StaticIPAMConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.StaticIPAMConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2611,17 +2271,14 @@ }, "os_operator_v1_IngressController": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressController", "required": true }, @@ -2647,23 +2304,18 @@ }, "os_operator_v1_IngressControllerCaptureHTTPCookie": { "type": "object", - "description": "", "properties": { "matchType": { - "type": "string", - "description": "" + "type": "string" }, "maxLength": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namePrefix": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2674,15 +2326,12 @@ }, "os_operator_v1_IngressControllerCaptureHTTPHeader": { "type": "object", - "description": "", "properties": { "maxLength": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2693,11 +2342,9 @@ }, "os_operator_v1_IngressControllerCaptureHTTPHeaders": { "type": "object", - "description": "", "properties": { "request": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPHeader", @@ -2706,7 +2353,6 @@ }, "response": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPHeader", @@ -2722,11 +2368,9 @@ }, "os_operator_v1_IngressControllerHTTPHeaders": { "type": "object", - "description": "", "properties": { "forwardedHeaderPolicy": { - "type": "string", - "description": "" + "type": "string" }, "uniqueId": { "$ref": "#/definitions/os_operator_v1_IngressControllerHTTPUniqueIdHeaderPolicy", @@ -2741,15 +2385,12 @@ }, "os_operator_v1_IngressControllerHTTPUniqueIdHeaderPolicy": { "type": "object", - "description": "", "properties": { "format": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2760,17 +2401,14 @@ }, "os_operator_v1_IngressControllerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_IngressController", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IngressController" @@ -2778,7 +2416,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressControllerList", "required": true }, @@ -2796,7 +2433,6 @@ }, "os_operator_v1_IngressControllerLogging": { "type": "object", - "description": "", "properties": { "access": { "$ref": "#/definitions/os_operator_v1_AccessLogging", @@ -2811,15 +2447,13 @@ }, "os_operator_v1_IngressControllerSpec": { "type": "object", - "description": "", "properties": { "defaultCertificate": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "domain": { - "type": "string", - "description": "" + "type": "string" }, "endpointPublishingStrategy": { "$ref": "#/definitions/os_operator_v1_EndpointPublishingStrategy", @@ -2842,8 +2476,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.NodePlacement" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "routeAdmission": { "$ref": "#/definitions/os_operator_v1_RouteAdmissionPolicy", @@ -2866,15 +2499,12 @@ }, "os_operator_v1_IngressControllerStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -2882,8 +2512,7 @@ } }, "domain": { - "type": "string", - "description": "" + "type": "string" }, "endpointPublishingStrategy": { "$ref": "#/definitions/os_operator_v1_EndpointPublishingStrategy", @@ -2891,12 +2520,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { - "type": "string", - "description": "" + "type": "string" }, "tlsProfile": { "$ref": "#/definitions/os_config_TLSProfileSpec", @@ -2911,17 +2538,14 @@ }, "os_operator_v1_KubeAPIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeAPIServer", "required": true }, @@ -2946,17 +2570,14 @@ }, "os_operator_v1_KubeAPIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeAPIServer" @@ -2964,7 +2585,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeAPIServerList", "required": true }, @@ -2982,35 +2602,28 @@ }, "os_operator_v1_KubeAPIServerSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3025,11 +2638,9 @@ }, "os_operator_v1_KubeAPIServerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3038,7 +2649,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3046,16 +2656,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -3064,16 +2671,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3084,17 +2688,14 @@ }, "os_operator_v1_KubeControllerManager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeControllerManager", "required": true }, @@ -3119,17 +2720,14 @@ }, "os_operator_v1_KubeControllerManagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeControllerManager" @@ -3137,7 +2735,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeControllerManagerList", "required": true }, @@ -3155,35 +2752,28 @@ }, "os_operator_v1_KubeControllerManagerSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3198,11 +2788,9 @@ }, "os_operator_v1_KubeControllerManagerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3211,7 +2799,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3219,16 +2806,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -3237,16 +2821,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3257,17 +2838,14 @@ }, "os_operator_v1_KubeScheduler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeScheduler", "required": true }, @@ -3292,17 +2870,14 @@ }, "os_operator_v1_KubeSchedulerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeScheduler", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeScheduler" @@ -3310,7 +2885,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeSchedulerList", "required": true }, @@ -3328,35 +2902,28 @@ }, "os_operator_v1_KubeSchedulerSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3371,11 +2938,9 @@ }, "os_operator_v1_KubeSchedulerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3384,7 +2949,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3392,16 +2956,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -3410,16 +2971,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3430,17 +2988,14 @@ }, "os_operator_v1_KubeStorageVersionMigrator": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeStorageVersionMigrator", "required": true }, @@ -3465,17 +3020,14 @@ }, "os_operator_v1_KubeStorageVersionMigratorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeStorageVersionMigrator", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeStorageVersionMigrator" @@ -3483,7 +3035,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeStorageVersionMigratorList", "required": true }, @@ -3501,23 +3052,19 @@ }, "os_operator_v1_KubeStorageVersionMigratorSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -3532,11 +3079,9 @@ }, "os_operator_v1_KubeStorageVersionMigratorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -3545,7 +3090,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -3554,16 +3098,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3574,35 +3115,27 @@ }, "os_operator_v1_KuryrConfig": { "type": "object", - "description": "", "properties": { "controllerProbesPort": { - "type": "integer", - "description": "" + "type": "integer" }, "daemonProbesPort": { - "type": "integer", - "description": "" + "type": "integer" }, "enablePortPoolsPrepopulation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "openStackServiceNetwork": { - "type": "string", - "description": "" + "type": "string" }, "poolBatchPorts": { - "type": "integer", - "description": "" + "type": "integer" }, "poolMaxPorts": { - "type": "integer", - "description": "" + "type": "integer" }, "poolMinPorts": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3613,15 +3146,13 @@ }, "os_operator_v1_LoadBalancerStrategy": { "type": "object", - "description": "", "properties": { "providerParameters": { "$ref": "#/definitions/os_operator_v1_ProviderLoadBalancerParameters", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ProviderLoadBalancerParameters" }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3632,7 +3163,6 @@ }, "os_operator_v1_LoggingDestination": { "type": "object", - "description": "", "properties": { "container": { "$ref": "#/definitions/os_operator_v1_ContainerLoggingDestinationParameters", @@ -3643,8 +3173,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.SyslogLoggingDestinationParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3655,17 +3184,14 @@ }, "os_operator_v1_Network": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Network", "required": true }, @@ -3690,17 +3216,14 @@ }, "os_operator_v1_NetworkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Network", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Network" @@ -3708,7 +3231,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkList", "required": true }, @@ -3726,11 +3248,9 @@ }, "os_operator_v1_NetworkSpec": { "type": "object", - "description": "", "properties": { "additionalNetworks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_AdditionalNetworkDefinition", @@ -3739,7 +3259,6 @@ }, "clusterNetwork": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ClusterNetworkEntry" @@ -3750,27 +3269,22 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DefaultNetworkDefinition" }, "deployKubeProxy": { - "type": "boolean", - "description": "" + "type": "boolean" }, "disableMultiNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kubeProxyConfig": { "$ref": "#/definitions/os_operator_v1_ProxyConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ProxyConfig" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "serviceNetwork": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3782,7 +3296,6 @@ }, "os_operator_v1_NetworkStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.NetworkStatus", "javaInterfaces": [ @@ -3791,7 +3304,6 @@ }, "os_operator_v1_NodePlacement": { "type": "object", - "description": "", "properties": { "nodeSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3799,7 +3311,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3815,7 +3326,6 @@ }, "os_operator_v1_NodePortStrategy": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.NodePortStrategy", "javaInterfaces": [ @@ -3824,32 +3334,25 @@ }, "os_operator_v1_NodeStatus": { "type": "object", - "description": "", "properties": { "currentRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "lastFailedRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "lastFailedRevisionErrors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRevision": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3860,11 +3363,9 @@ }, "os_operator_v1_OAuthAPIServerStatus": { "type": "object", - "description": "", "properties": { "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3875,19 +3376,16 @@ }, "os_operator_v1_OVNKubernetesConfig": { "type": "object", - "description": "", "properties": { "genevePort": { - "type": "integer", - "description": "" + "type": "integer" }, "hybridOverlayConfig": { "$ref": "#/definitions/os_operator_v1_HybridOverlayConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.HybridOverlayConfig" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3898,17 +3396,14 @@ }, "os_operator_v1_OpenShiftAPIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OpenShiftAPIServer", "required": true }, @@ -3933,17 +3428,14 @@ }, "os_operator_v1_OpenShiftAPIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_OpenShiftAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OpenShiftAPIServer" @@ -3951,7 +3443,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OpenShiftAPIServerList", "required": true }, @@ -3969,23 +3460,19 @@ }, "os_operator_v1_OpenShiftAPIServerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4000,11 +3487,9 @@ }, "os_operator_v1_OpenShiftAPIServerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4013,7 +3498,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4021,21 +3505,17 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4046,17 +3526,14 @@ }, "os_operator_v1_OpenShiftControllerManager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OpenShiftControllerManager", "required": true }, @@ -4081,17 +3558,14 @@ }, "os_operator_v1_OpenShiftControllerManagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_OpenShiftControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OpenShiftControllerManager" @@ -4099,7 +3573,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OpenShiftControllerManagerList", "required": true }, @@ -4117,23 +3590,19 @@ }, "os_operator_v1_OpenShiftControllerManagerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4148,11 +3617,9 @@ }, "os_operator_v1_OpenShiftControllerManagerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4161,7 +3628,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4170,16 +3636,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4190,27 +3653,21 @@ }, "os_operator_v1_OpenShiftSDNConfig": { "type": "object", - "description": "", "properties": { "enableUnidling": { - "type": "boolean", - "description": "" + "type": "boolean" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" }, "useExternalOpenvswitch": { - "type": "boolean", - "description": "" + "type": "boolean" }, "vxlanPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4221,27 +3678,22 @@ }, "os_operator_v1_OperatorCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4252,23 +3704,19 @@ }, "os_operator_v1_OperatorSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4283,11 +3731,9 @@ }, "os_operator_v1_OperatorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4296,7 +3742,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4305,16 +3750,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4325,7 +3767,6 @@ }, "os_operator_v1_PrivateStrategy": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operator.v1.PrivateStrategy", "javaInterfaces": [ @@ -4334,15 +3775,13 @@ }, "os_operator_v1_ProviderLoadBalancerParameters": { "type": "object", - "description": "", "properties": { "aws": { "$ref": "#/definitions/os_operator_v1_AWSLoadBalancerParameters", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.AWSLoadBalancerParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4353,25 +3792,19 @@ }, "os_operator_v1_ProxyConfig": { "type": "object", - "description": "", "properties": { "bindAddress": { - "type": "string", - "description": "" + "type": "string" }, "iptablesSyncPeriod": { - "type": "string", - "description": "" + "type": "string" }, "proxyArguments": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -4385,15 +3818,12 @@ }, "os_operator_v1_RouteAdmissionPolicy": { "type": "object", - "description": "", "properties": { "namespaceOwnership": { - "type": "string", - "description": "" + "type": "string" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4404,22 +3834,18 @@ }, "os_operator_v1_Server": { "type": "object", - "description": "", "properties": { "forwardPlugin": { "$ref": "#/definitions/os_operator_v1_ForwardPlugin", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ForwardPlugin" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "zones": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4431,17 +3857,14 @@ }, "os_operator_v1_ServiceCA": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCA", "required": true }, @@ -4466,17 +3889,14 @@ }, "os_operator_v1_ServiceCAList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCA", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCA" @@ -4484,7 +3904,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCAList", "required": true }, @@ -4502,23 +3921,19 @@ }, "os_operator_v1_ServiceCASpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4533,11 +3948,9 @@ }, "os_operator_v1_ServiceCAStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4546,7 +3959,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4555,16 +3967,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4575,17 +3984,14 @@ }, "os_operator_v1_ServiceCatalogAPIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogAPIServer", "required": true }, @@ -4610,17 +4016,14 @@ }, "os_operator_v1_ServiceCatalogAPIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCatalogAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCatalogAPIServer" @@ -4628,7 +4031,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogAPIServerList", "required": true }, @@ -4646,23 +4048,19 @@ }, "os_operator_v1_ServiceCatalogAPIServerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4677,11 +4075,9 @@ }, "os_operator_v1_ServiceCatalogAPIServerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4690,7 +4086,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4699,16 +4094,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4719,17 +4111,14 @@ }, "os_operator_v1_ServiceCatalogControllerManager": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogControllerManager", "required": true }, @@ -4754,17 +4143,14 @@ }, "os_operator_v1_ServiceCatalogControllerManagerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCatalogControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCatalogControllerManager" @@ -4772,7 +4158,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogControllerManagerList", "required": true }, @@ -4790,23 +4175,19 @@ }, "os_operator_v1_ServiceCatalogControllerManagerSpec": { "type": "object", - "description": "", "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -4821,11 +4202,9 @@ }, "os_operator_v1_ServiceCatalogControllerManagerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -4834,7 +4213,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -4843,16 +4221,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4863,23 +4238,19 @@ }, "os_operator_v1_SimpleMacvlanConfig": { "type": "object", - "description": "", "properties": { "ipamConfig": { "$ref": "#/definitions/os_operator_v1_IPAMConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IPAMConfig" }, "master": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4890,15 +4261,12 @@ }, "os_operator_v1_StaticIPAMAddresses": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4909,11 +4277,9 @@ }, "os_operator_v1_StaticIPAMConfig": { "type": "object", - "description": "", "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_StaticIPAMAddresses", @@ -4926,7 +4292,6 @@ }, "routes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_StaticIPAMRoutes", @@ -4942,28 +4307,22 @@ }, "os_operator_v1_StaticIPAMDNS": { "type": "object", - "description": "", "properties": { "domain": { - "type": "string", - "description": "" + "type": "string" }, "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "search": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4975,15 +4334,12 @@ }, "os_operator_v1_StaticIPAMRoutes": { "type": "object", - "description": "", "properties": { "destination": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4994,35 +4350,28 @@ }, "os_operator_v1_StaticPodOperatorSpec": { "type": "object", - "description": "", "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -5037,11 +4386,9 @@ }, "os_operator_v1_StaticPodOperatorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -5050,7 +4397,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -5058,16 +4404,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -5076,16 +4419,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5096,11 +4436,9 @@ }, "os_operator_v1_StatuspageProvider": { "type": "object", - "description": "", "properties": { "pageID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5111,19 +4449,15 @@ }, "os_operator_v1_SyslogLoggingDestinationParameters": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "facility": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -5134,17 +4468,14 @@ }, "os_operator_v1alpha1_ImageContentSourcePolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageContentSourcePolicy", "required": true }, @@ -5165,17 +4496,14 @@ }, "os_operator_v1alpha1_ImageContentSourcePolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1alpha1_ImageContentSourcePolicy", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1alpha1.ImageContentSourcePolicy" @@ -5183,7 +4511,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageContentSourcePolicyList", "required": true }, @@ -5201,11 +4528,9 @@ }, "os_operator_v1alpha1_ImageContentSourcePolicySpec": { "type": "object", - "description": "", "properties": { "repositoryDigestMirrors": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1alpha1_RepositoryDigestMirrors", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1alpha1.RepositoryDigestMirrors" @@ -5220,19 +4545,15 @@ }, "os_operator_v1alpha1_RepositoryDigestMirrors": { "type": "object", - "description": "", "properties": { "mirrors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "source": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5455,7 +4776,6 @@ }, "httpCaptureCookies": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPCookie", @@ -5467,8 +4787,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IngressControllerCaptureHTTPHeaders" }, "httpLogFormat": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5476,24 +4795,20 @@ "additionalnetworkdefinition": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "rawCNIConfig": { - "type": "string", - "description": "" + "type": "string" }, "simpleMacvlanConfig": { "$ref": "#/definitions/os_operator_v1_SimpleMacvlanConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.SimpleMacvlanConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5519,19 +4834,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -5539,7 +4851,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -5548,7 +4859,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -5561,13 +4871,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -5575,7 +4883,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -5586,13 +4893,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Authentication", "required": true }, @@ -5615,13 +4920,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Authentication", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Authentication" @@ -5629,7 +4932,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AuthenticationList", "required": true }, @@ -5643,20 +4945,17 @@ "authenticationspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -5669,7 +4968,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -5678,7 +4976,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -5686,8 +4983,7 @@ } }, "managingOAuthAPIServer": { - "type": "boolean", - "description": "" + "type": "boolean" }, "oauthAPIServer": { "$ref": "#/definitions/os_operator_v1_OAuthAPIServerStatus", @@ -5695,16 +4991,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5723,8 +5016,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.AWSNetworkLoadBalancerParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5735,12 +5027,10 @@ "clusternetworkentry": { "properties": { "cidr": { - "type": "string", - "description": "" + "type": "string" }, "hostPrefix": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -5748,12 +5038,10 @@ "configmapfilereference": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5762,13 +5050,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Console", "required": true }, @@ -5790,8 +5076,7 @@ "consoleconfigroute": { "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "secret": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -5803,20 +5088,17 @@ "consolecustomization": { "properties": { "brand": { - "type": "string", - "description": "" + "type": "string" }, "customLogoFile": { "$ref": "#/definitions/os_config_ConfigMapFileReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapFileReference" }, "customProductName": { - "type": "string", - "description": "" + "type": "string" }, "documentationBaseURL": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5825,13 +5107,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Console", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Console" @@ -5839,7 +5119,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConsoleList", "required": true }, @@ -5866,20 +5145,17 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ConsoleCustomization" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "providers": { "$ref": "#/definitions/os_operator_v1_ConsoleProviders", @@ -5900,7 +5176,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -5909,7 +5184,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -5918,16 +5192,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -5939,13 +5210,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CSISnapshotController", "required": true }, @@ -5968,13 +5237,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_CSISnapshotController", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.CSISnapshotController" @@ -5982,7 +5249,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CSISnapshotControllerList", "required": true }, @@ -5996,20 +5262,17 @@ "csisnapshotcontrollerspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -6022,7 +5285,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -6031,7 +5293,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -6040,16 +5301,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6058,15 +5316,12 @@ "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6086,8 +5341,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OVNKubernetesConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6096,13 +5350,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DNS", "required": true }, @@ -6125,13 +5377,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_DNS", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DNS" @@ -6139,7 +5389,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DNSList", "required": true }, @@ -6154,13 +5403,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "ingress.operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DNSRecord", "required": true }, @@ -6183,13 +5430,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "ingress.operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_DNSRecord", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DNSRecord" @@ -6197,7 +5442,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DNSRecordList", "required": true }, @@ -6211,24 +5455,19 @@ "dnsrecordspec": { "properties": { "dnsName": { - "type": "string", - "description": "" + "type": "string" }, "recordTTL": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "recordType": { - "type": "string", - "description": "" + "type": "string" }, "targets": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6238,12 +5477,10 @@ "properties": { "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "zones": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_DNSZoneStatus", @@ -6257,7 +5494,6 @@ "properties": { "servers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_Server", @@ -6270,16 +5506,13 @@ "dnsstatus": { "properties": { "clusterDomain": { - "type": "string", - "description": "" + "type": "string" }, "clusterIP": { - "type": "string", - "description": "" + "type": "string" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -6292,15 +5525,12 @@ "dnszone": { "properties": { "id": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -6314,20 +5544,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6336,7 +5562,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_DNSZoneCondition", @@ -6354,7 +5579,6 @@ "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -6379,8 +5603,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.PrivateStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6389,13 +5612,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Etcd", "required": true }, @@ -6418,13 +5639,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Etcd", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Etcd" @@ -6432,7 +5651,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EtcdList", "required": true }, @@ -6446,32 +5664,26 @@ "etcdspec": { "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -6484,7 +5696,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -6493,7 +5704,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -6501,16 +5711,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -6519,16 +5726,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6540,10 +5744,8 @@ "properties": { "upstreams": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6552,29 +5754,23 @@ "generationstatus": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "hash": { - "type": "string", - "description": "" + "type": "string" }, "lastGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6582,12 +5778,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6599,15 +5793,13 @@ "properties": { "hybridClusterNetwork": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ClusterNetworkEntry" } }, "hybridOverlayVXLANPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -6616,13 +5808,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageContentSourcePolicy", "required": true }, @@ -6641,13 +5831,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1alpha1_ImageContentSourcePolicy", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1alpha1.ImageContentSourcePolicy" @@ -6655,7 +5843,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageContentSourcePolicyList", "required": true }, @@ -6670,7 +5857,6 @@ "properties": { "repositoryDigestMirrors": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1alpha1_RepositoryDigestMirrors", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1alpha1.RepositoryDigestMirrors" @@ -6683,13 +5869,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "imageregistry.operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImagePruner", "required": true }, @@ -6712,13 +5896,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "imageregistry.operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_imageregistry_v1_ImagePruner", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ImagePruner" @@ -6726,7 +5908,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImagePrunerList", "required": true }, @@ -6744,20 +5925,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "failedJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "ignoreInvalidImageReferences": { - "type": "boolean", - "description": "" + "type": "boolean" }, "keepTagRevisions": { - "type": "integer", - "description": "" + "type": "integer" }, "keepYoungerThan": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "keepYoungerThanDuration": { @@ -6766,10 +5943,8 @@ }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6778,20 +5953,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "successfulJobsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "suspend": { - "type": "boolean", - "description": "" + "type": "boolean" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -6805,7 +5976,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -6814,7 +5984,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -6826,40 +5995,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6868,13 +6028,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IngressController", "required": true }, @@ -6896,20 +6054,16 @@ "ingresscontrollercapturehttpcookie": { "properties": { "matchType": { - "type": "string", - "description": "" + "type": "string" }, "maxLength": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namePrefix": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6917,12 +6071,10 @@ "ingresscontrollercapturehttpheader": { "properties": { "maxLength": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6931,7 +6083,6 @@ "properties": { "request": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPHeader", @@ -6940,7 +6091,6 @@ }, "response": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_IngressControllerCaptureHTTPHeader", @@ -6953,8 +6103,7 @@ "ingresscontrollerhttpheaders": { "properties": { "forwardedHeaderPolicy": { - "type": "string", - "description": "" + "type": "string" }, "uniqueId": { "$ref": "#/definitions/os_operator_v1_IngressControllerHTTPUniqueIdHeaderPolicy", @@ -6966,12 +6115,10 @@ "ingresscontrollerhttpuniqueidheaderpolicy": { "properties": { "format": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6980,13 +6127,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_IngressController", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IngressController" @@ -6994,7 +6139,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IngressControllerList", "required": true }, @@ -7021,8 +6165,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "domain": { - "type": "string", - "description": "" + "type": "string" }, "endpointPublishingStrategy": { "$ref": "#/definitions/os_operator_v1_EndpointPublishingStrategy", @@ -7045,8 +6188,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.NodePlacement" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "routeAdmission": { "$ref": "#/definitions/os_operator_v1_RouteAdmissionPolicy", @@ -7066,12 +6208,10 @@ "ingresscontrollerstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -7079,8 +6219,7 @@ } }, "domain": { - "type": "string", - "description": "" + "type": "string" }, "endpointPublishingStrategy": { "$ref": "#/definitions/os_operator_v1_EndpointPublishingStrategy", @@ -7088,12 +6227,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "selector": { - "type": "string", - "description": "" + "type": "string" }, "tlsProfile": { "$ref": "#/definitions/os_config_TLSProfileSpec", @@ -7112,8 +6249,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.StaticIPAMConfig" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7122,13 +6258,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeAPIServer", "required": true }, @@ -7151,13 +6285,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeAPIServer" @@ -7165,7 +6297,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeAPIServerList", "required": true }, @@ -7179,32 +6310,26 @@ "kubeapiserverspec": { "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -7217,7 +6342,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -7226,7 +6350,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -7234,16 +6357,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -7252,16 +6372,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7270,13 +6387,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeControllerManager", "required": true }, @@ -7299,13 +6414,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeControllerManager" @@ -7313,7 +6426,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeControllerManagerList", "required": true }, @@ -7327,32 +6439,26 @@ "kubecontrollermanagerspec": { "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -7365,7 +6471,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -7374,7 +6479,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -7382,16 +6486,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -7400,16 +6501,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7418,13 +6516,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeScheduler", "required": true }, @@ -7447,13 +6543,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeScheduler", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeScheduler" @@ -7461,7 +6555,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeSchedulerList", "required": true }, @@ -7475,32 +6568,26 @@ "kubeschedulerspec": { "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -7513,7 +6600,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -7522,7 +6608,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -7530,16 +6615,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -7548,16 +6630,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7566,13 +6645,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KubeStorageVersionMigrator", "required": true }, @@ -7595,13 +6672,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_KubeStorageVersionMigrator", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.KubeStorageVersionMigrator" @@ -7609,7 +6684,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KubeStorageVersionMigratorList", "required": true }, @@ -7623,20 +6697,17 @@ "kubestorageversionmigratorspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -7649,7 +6720,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -7658,7 +6728,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -7667,16 +6736,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7684,32 +6750,25 @@ "kuryrconfig": { "properties": { "controllerProbesPort": { - "type": "integer", - "description": "" + "type": "integer" }, "daemonProbesPort": { - "type": "integer", - "description": "" + "type": "integer" }, "enablePortPoolsPrepopulation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "openStackServiceNetwork": { - "type": "string", - "description": "" + "type": "string" }, "poolBatchPorts": { - "type": "integer", - "description": "" + "type": "integer" }, "poolMaxPorts": { - "type": "integer", - "description": "" + "type": "integer" }, "poolMinPorts": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -7718,7 +6777,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -7727,10 +6785,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -7740,20 +6796,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7763,13 +6815,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -7777,7 +6827,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -7791,21 +6840,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7817,8 +6862,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ProviderLoadBalancerParameters" }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7826,8 +6870,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7843,8 +6886,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.SyslogLoggingDestinationParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7852,24 +6894,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7885,13 +6923,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Network", "required": true }, @@ -7914,13 +6950,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_Network", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.Network" @@ -7928,7 +6962,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkList", "required": true }, @@ -7943,7 +6976,6 @@ "properties": { "additionalNetworks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_AdditionalNetworkDefinition", @@ -7952,7 +6984,6 @@ }, "clusterNetwork": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ClusterNetworkEntry" @@ -7963,27 +6994,22 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.DefaultNetworkDefinition" }, "deployKubeProxy": { - "type": "boolean", - "description": "" + "type": "boolean" }, "disableMultiNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kubeProxyConfig": { "$ref": "#/definitions/os_operator_v1_ProxyConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ProxyConfig" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "serviceNetwork": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -7996,7 +7022,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -8018,7 +7043,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -8035,7 +7059,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -8047,20 +7070,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8070,7 +7089,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -8079,7 +7097,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -8092,29 +7109,23 @@ "nodestatus": { "properties": { "currentRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "lastFailedRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "lastFailedRevisionErrors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "targetRevision": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8122,8 +7133,7 @@ "oauthapiserverstatus": { "properties": { "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8132,16 +7142,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -8149,7 +7156,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -8158,34 +7164,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -8193,18 +7192,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -8212,16 +7208,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8233,13 +7226,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OpenShiftAPIServer", "required": true }, @@ -8262,13 +7253,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_OpenShiftAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OpenShiftAPIServer" @@ -8276,7 +7265,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OpenShiftAPIServerList", "required": true }, @@ -8290,20 +7278,17 @@ "openshiftapiserverspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -8316,7 +7301,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -8325,7 +7309,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -8333,21 +7316,17 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8356,13 +7335,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OpenShiftControllerManager", "required": true }, @@ -8385,13 +7362,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_OpenShiftControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.OpenShiftControllerManager" @@ -8399,7 +7374,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OpenShiftControllerManagerList", "required": true }, @@ -8413,20 +7387,17 @@ "openshiftcontrollermanagerspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -8439,7 +7410,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -8448,7 +7418,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -8457,16 +7426,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8474,24 +7440,19 @@ "openshiftsdnconfig": { "properties": { "enableUnidling": { - "type": "boolean", - "description": "" + "type": "boolean" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" }, "useExternalOpenvswitch": { - "type": "boolean", - "description": "" + "type": "boolean" }, "vxlanPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8503,20 +7464,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8524,20 +7481,17 @@ "operatorspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -8550,7 +7504,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -8559,7 +7512,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -8568,16 +7520,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8585,16 +7534,14 @@ "ovnkubernetesconfig": { "properties": { "genevePort": { - "type": "integer", - "description": "" + "type": "integer" }, "hybridOverlayConfig": { "$ref": "#/definitions/os_operator_v1_HybridOverlayConfig", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.HybridOverlayConfig" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8602,28 +7549,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8635,7 +7576,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -8644,7 +7584,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -8662,16 +7601,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8680,7 +7616,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -8689,7 +7624,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -8706,8 +7640,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -8722,8 +7655,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.AWSLoadBalancerParameters" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8731,22 +7663,17 @@ "proxyconfig": { "properties": { "bindAddress": { - "type": "string", - "description": "" + "type": "string" }, "iptablesSyncPeriod": { - "type": "string", - "description": "" + "type": "string" }, "proxyArguments": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -8757,8 +7684,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8770,15 +7696,12 @@ "properties": { "mirrors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "source": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8787,7 +7710,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -8796,7 +7718,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -8809,12 +7730,10 @@ "routeadmissionpolicy": { "properties": { "namespaceOwnership": { - "type": "string", - "description": "" + "type": "string" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8822,8 +7741,7 @@ "secretnamereference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8835,15 +7753,12 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ForwardPlugin" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "zones": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8852,12 +7767,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8866,13 +7779,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCA", "required": true }, @@ -8895,13 +7806,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCA", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCA" @@ -8909,7 +7818,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCAList", "required": true }, @@ -8923,20 +7831,17 @@ "servicecaspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -8949,7 +7854,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -8958,7 +7862,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -8967,16 +7870,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8985,13 +7885,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogAPIServer", "required": true }, @@ -9014,13 +7912,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCatalogAPIServer", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCatalogAPIServer" @@ -9028,7 +7924,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogAPIServerList", "required": true }, @@ -9042,20 +7937,17 @@ "servicecatalogapiserverspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -9068,7 +7960,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -9077,7 +7968,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -9086,16 +7976,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9104,13 +7991,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogControllerManager", "required": true }, @@ -9133,13 +8018,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operator.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operator_v1_ServiceCatalogControllerManager", "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.ServiceCatalogControllerManager" @@ -9147,7 +8030,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceCatalogControllerManagerList", "required": true }, @@ -9161,20 +8043,17 @@ "servicecatalogcontrollermanagerspec": { "properties": { "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -9187,7 +8066,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -9196,7 +8074,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -9205,16 +8082,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9226,16 +8100,13 @@ "existingJavaType": "io.fabric8.openshift.api.model.operator.v1.IPAMConfig" }, "master": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9243,12 +8114,10 @@ "staticipamaddresses": { "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9257,7 +8126,6 @@ "properties": { "addresses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_StaticIPAMAddresses", @@ -9270,7 +8138,6 @@ }, "routes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_StaticIPAMRoutes", @@ -9283,25 +8150,20 @@ "staticipamdns": { "properties": { "domain": { - "type": "string", - "description": "" + "type": "string" }, "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "search": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9310,12 +8172,10 @@ "staticipamroutes": { "properties": { "destination": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9323,32 +8183,26 @@ "staticpodoperatorspec": { "properties": { "failedRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "forceRedeploymentReason": { - "type": "string", - "description": "" + "type": "string" }, "logLevel": { - "type": "string", - "description": "" + "type": "string" }, "managementState": { - "type": "string", - "description": "" + "type": "string" }, "observedConfig": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "operatorLogLevel": { - "type": "string", - "description": "" + "type": "string" }, "succeededRevisionLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "unsupportedConfigOverrides": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", @@ -9361,7 +8215,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_OperatorCondition", @@ -9370,7 +8223,6 @@ }, "generations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_GenerationStatus", @@ -9378,16 +8230,13 @@ } }, "latestAvailableRevision": { - "type": "integer", - "description": "" + "type": "integer" }, "latestAvailableRevisionReason": { - "type": "string", - "description": "" + "type": "string" }, "nodeStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operator_v1_NodeStatus", @@ -9396,16 +8245,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9414,13 +8260,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -9428,25 +8272,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9454,16 +8294,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9472,7 +8309,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -9480,24 +8316,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9505,8 +8336,7 @@ "statuspageprovider": { "properties": { "pageID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9514,16 +8344,13 @@ "syslogloggingdestinationparameters": { "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "facility": { - "type": "string", - "description": "" + "type": "string" }, "port": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -9531,8 +8358,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9541,15 +8367,12 @@ "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9573,8 +8396,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OldTLSProfile" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9582,25 +8404,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9608,12 +8425,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9625,8 +8440,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/kube-schema.json index 2057c9c9e4e..7e5c4f4d7ba 100644 --- a/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/kube-schema.json @@ -5,38 +5,30 @@ "definitions": { "kubernetes_admissionregistration_v1_Rule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -47,47 +39,37 @@ }, "kubernetes_admissionregistration_v1_RuleWithOperations": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -98,23 +80,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -122,7 +100,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -131,7 +108,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -146,17 +122,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -164,7 +137,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -177,11 +149,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -193,7 +163,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -202,15 +171,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,19 +187,15 @@ }, "kubernetes_apimachinery_GroupVersionKind": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -244,11 +206,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -257,10 +217,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -273,23 +231,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -301,17 +254,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -319,7 +269,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -337,24 +286,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -365,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -400,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -421,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -430,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -465,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -484,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -504,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -539,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -548,15 +461,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -567,17 +477,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -585,25 +492,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -614,19 +517,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -637,11 +536,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -649,24 +546,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -677,11 +569,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -692,15 +582,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -711,7 +598,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -720,7 +606,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -729,19 +614,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -753,43 +634,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -800,17 +671,14 @@ }, "kubernetes_apps_Deployment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -836,7 +704,6 @@ }, "kubernetes_apps_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -847,20 +714,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -871,27 +734,21 @@ }, "kubernetes_apps_DeploymentSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -914,19 +771,15 @@ }, "kubernetes_apps_DeploymentStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DeploymentCondition", @@ -935,24 +788,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -963,15 +811,13 @@ }, "kubernetes_apps_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateDeployment", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -982,7 +828,6 @@ }, "kubernetes_apps_RollingUpdateDeployment": { "type": "object", - "description": "", "properties": { "maxSurge": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1001,23 +846,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1028,7 +868,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1051,31 +890,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1086,19 +918,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1109,30 +937,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1145,24 +967,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1174,35 +991,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1213,23 +1023,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1240,15 +1046,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1259,19 +1062,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1282,11 +1081,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1294,12 +1091,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1310,15 +1105,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1326,12 +1118,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1342,29 +1132,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1373,7 +1157,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1381,12 +1164,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1398,13 +1179,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1428,28 +1207,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1458,7 +1231,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1466,8 +1238,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1478,29 +1249,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1511,11 +1276,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1531,19 +1294,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1558,15 +1318,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1582,11 +1339,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1601,15 +1356,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1624,16 +1377,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1648,7 +1398,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1675,29 +1424,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1706,7 +1449,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1714,12 +1456,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1730,12 +1470,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1759,32 +1497,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1793,7 +1524,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1801,8 +1531,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1813,29 +1542,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1844,7 +1567,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1852,12 +1574,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1868,12 +1588,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1897,28 +1615,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1927,7 +1639,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1935,8 +1646,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1947,11 +1657,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1966,15 +1674,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1986,36 +1691,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2027,28 +1724,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2063,15 +1754,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2082,23 +1770,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2109,19 +1792,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2132,19 +1811,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2155,15 +1830,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2171,16 +1843,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2191,15 +1861,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2210,7 +1877,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2233,20 +1899,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2257,15 +1919,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2276,56 +1935,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2336,19 +1983,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2359,7 +2002,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2378,11 +2020,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2393,19 +2033,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2416,11 +2052,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2440,11 +2074,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2459,23 +2091,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2487,11 +2114,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2500,7 +2125,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2516,15 +2140,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2535,35 +2156,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2574,15 +2187,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -2598,16 +2208,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2618,7 +2225,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2637,15 +2243,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2656,15 +2259,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2675,11 +2275,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2688,7 +2286,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2704,7 +2301,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2712,16 +2308,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2732,11 +2325,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2745,7 +2336,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2761,20 +2351,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -2783,11 +2369,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2799,15 +2383,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2818,11 +2399,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2833,29 +2412,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2868,17 +2441,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -2898,11 +2468,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -2910,12 +2478,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -2926,16 +2492,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -2944,7 +2507,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -2952,24 +2514,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2978,7 +2535,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -2986,21 +2542,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3008,20 +2560,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3029,49 +2577,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3080,7 +2618,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3089,7 +2626,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3105,7 +2641,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3124,19 +2659,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3147,15 +2678,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3166,39 +2695,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3209,15 +2732,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3232,31 +2752,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3267,43 +2780,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3314,19 +2818,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3337,11 +2838,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3350,7 +2849,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3366,23 +2864,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3393,47 +2886,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3444,15 +2927,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3463,15 +2943,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3482,19 +2959,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3505,11 +2978,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3517,12 +2988,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3533,15 +3002,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3549,12 +3015,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3565,40 +3029,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3622,20 +3078,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3646,27 +3098,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3677,15 +3124,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3696,11 +3140,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3715,28 +3157,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3747,23 +3183,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3774,19 +3206,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3797,7 +3225,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -3873,7 +3300,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -3930,15 +3356,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3949,31 +3372,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3984,7 +3400,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4011,7 +3426,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4138,23 +3552,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4165,15 +3574,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4184,19 +3591,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4207,50 +3610,39 @@ }, "kubernetes_rbac_v1_PolicyRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4262,11 +3654,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4277,7 +3667,6 @@ }, "os_operatorhub_manifests_OperatorVersion": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.OperatorVersion", "javaInterfaces": [ @@ -4286,15 +3675,12 @@ }, "os_operatorhub_manifests_PackageChannel": { "type": "object", - "description": "", "properties": { "currentCSV": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4305,23 +3691,19 @@ }, "os_operatorhub_manifests_PackageManifest": { "type": "object", - "description": "", "properties": { "channels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_manifests_PackageChannel", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.manifests.PackageChannel" } }, "defaultChannel": { - "type": "string", - "description": "" + "type": "string" }, "packageName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4332,17 +3714,14 @@ }, "os_operatorhub_v1_OperatorGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OperatorGroup", "required": true }, @@ -4368,17 +3747,14 @@ }, "os_operatorhub_v1_OperatorGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1_OperatorGroup", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1.OperatorGroup" @@ -4386,7 +3762,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OperatorGroupList", "required": true }, @@ -4404,27 +3779,22 @@ }, "os_operatorhub_v1_OperatorGroupSpec": { "type": "object", - "description": "", "properties": { "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "staticProvidedAPIs": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetNamespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4436,7 +3806,6 @@ }, "os_operatorhub_v1_OperatorGroupStatus": { "type": "object", - "description": "", "properties": { "lastUpdated": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4444,11 +3813,9 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "serviceAccountRef": { @@ -4464,19 +3831,15 @@ }, "os_operatorhub_v1alpha1_APIResourceReference": { "type": "object", - "description": "", "properties": { "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4487,11 +3850,9 @@ }, "os_operatorhub_v1alpha1_APIServiceDefinitions": { "type": "object", - "description": "", "properties": { "owned": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIServiceDescription", @@ -4500,7 +3861,6 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIServiceDescription", @@ -4516,11 +3876,9 @@ }, "os_operatorhub_v1alpha1_APIServiceDescription": { "type": "object", - "description": "", "properties": { "actionDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ActionDescriptor", @@ -4528,36 +3886,28 @@ } }, "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "deploymentName": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIResourceReference", @@ -4566,7 +3916,6 @@ }, "specDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SpecDescriptor", @@ -4575,7 +3924,6 @@ }, "statusDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StatusDescriptor", @@ -4583,8 +3931,7 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4595,31 +3942,24 @@ }, "os_operatorhub_v1alpha1_ActionDescriptor": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4631,15 +3971,12 @@ }, "os_operatorhub_v1alpha1_AppLink": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4650,7 +3987,6 @@ }, "os_operatorhub_v1alpha1_BundleLookup": { "type": "object", - "description": "", "properties": { "catalogSourceRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -4658,7 +3994,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_BundleLookupCondition", @@ -4666,16 +4001,13 @@ } }, "identifier": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "replaces": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4686,7 +4018,6 @@ }, "os_operatorhub_v1alpha1_BundleLookupCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4697,20 +4028,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4721,11 +4048,9 @@ }, "os_operatorhub_v1alpha1_CRDDescription": { "type": "object", - "description": "", "properties": { "actionDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ActionDescriptor", @@ -4733,24 +4058,19 @@ } }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIResourceReference", @@ -4759,7 +4079,6 @@ }, "specDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SpecDescriptor", @@ -4768,7 +4087,6 @@ }, "statusDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StatusDescriptor", @@ -4776,8 +4094,7 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4788,17 +4105,14 @@ }, "os_operatorhub_v1alpha1_CatalogSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CatalogSource", "required": true }, @@ -4824,17 +4138,14 @@ }, "os_operatorhub_v1alpha1_CatalogSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CatalogSource", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.CatalogSource" @@ -4842,7 +4153,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CatalogSourceList", "required": true }, @@ -4860,52 +4170,41 @@ }, "os_operatorhub_v1alpha1_CatalogSourceSpec": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "configMap": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "icon": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Icon", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.Icon" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "publisher": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sourceType": { - "type": "string", - "description": "" + "type": "string" }, "updateStrategy": { "$ref": "#/definitions/os_operatorhub_v1alpha1_UpdateStrategy", @@ -4920,7 +4219,6 @@ }, "os_operatorhub_v1alpha1_CatalogSourceStatus": { "type": "object", - "description": "", "properties": { "configMapReference": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ConfigMapResourceReference", @@ -4935,12 +4233,10 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "registryService": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RegistryServiceStatus", @@ -4955,17 +4251,14 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersion": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceVersion", "required": true }, @@ -4991,7 +4284,6 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5002,16 +4294,13 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5022,17 +4311,14 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ClusterServiceVersion", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.ClusterServiceVersion" @@ -5040,7 +4326,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceVersionList", "required": true }, @@ -5058,14 +4343,11 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionSpec": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -5078,16 +4360,13 @@ "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.CustomResourceDefinitions" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "icon": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Icon", @@ -5100,7 +4379,6 @@ }, "installModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallMode", @@ -5109,25 +4387,20 @@ }, "keywords": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "links": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_AppLink", @@ -5136,7 +4409,6 @@ }, "maintainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Maintainer", @@ -5144,16 +4416,13 @@ } }, "maturity": { - "type": "string", - "description": "" + "type": "string" }, "minKubeVersion": { - "type": "string", - "description": "" + "type": "string" }, "nativeAPIs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionKind", @@ -5165,8 +4434,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.AppLink" }, "replaces": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -5178,7 +4446,6 @@ }, "webhookdefinitions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_WebhookDescription", @@ -5194,7 +4461,6 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionStatus": { "type": "object", - "description": "", "properties": { "certsLastUpdated": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5206,7 +4472,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ClusterServiceVersionCondition", @@ -5222,20 +4487,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "requirementStatus": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RequirementStatus", @@ -5251,27 +4512,22 @@ }, "os_operatorhub_v1alpha1_ConfigMapResourceReference": { "type": "object", - "description": "", "properties": { "lastUpdateTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5282,11 +4538,9 @@ }, "os_operatorhub_v1alpha1_CustomResourceDefinitions": { "type": "object", - "description": "", "properties": { "owned": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CRDDescription", @@ -5295,7 +4549,6 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CRDDescription", @@ -5311,31 +4564,24 @@ }, "os_operatorhub_v1alpha1_DependentStatus": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5346,19 +4592,16 @@ }, "os_operatorhub_v1alpha1_GRPCConnectionState": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "lastConnect": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "lastObservedState": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5369,15 +4612,12 @@ }, "os_operatorhub_v1alpha1_Icon": { "type": "object", - "description": "", "properties": { "base64data": { - "type": "string", - "description": "" + "type": "string" }, "mediatype": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5388,15 +4628,12 @@ }, "os_operatorhub_v1alpha1_InstallMode": { "type": "object", - "description": "", "properties": { "supported": { - "type": "boolean", - "description": "" + "type": "boolean" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5407,17 +4644,14 @@ }, "os_operatorhub_v1alpha1_InstallPlan": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "InstallPlan", "required": true }, @@ -5443,7 +4677,6 @@ }, "os_operatorhub_v1alpha1_InstallPlanCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5454,20 +4687,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5478,17 +4707,14 @@ }, "os_operatorhub_v1alpha1_InstallPlanList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlan", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.InstallPlan" @@ -5496,7 +4722,6 @@ }, "kind": { "type": "string", - "description": "", "default": "InstallPlanList", "required": true }, @@ -5514,23 +4739,18 @@ }, "os_operatorhub_v1alpha1_InstallPlanReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5541,35 +4761,27 @@ }, "os_operatorhub_v1alpha1_InstallPlanSpec": { "type": "object", - "description": "", "properties": { "approval": { - "type": "string", - "description": "" + "type": "string" }, "approved": { - "type": "boolean", - "description": "" + "type": "boolean" }, "clusterServiceVersionNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "generation": { - "type": "integer", - "description": "" + "type": "integer" }, "source": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5580,7 +4792,6 @@ }, "os_operatorhub_v1alpha1_InstallPlanStatus": { "type": "object", - "description": "", "properties": { "attenuatedServiceAccountRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -5588,7 +4799,6 @@ }, "bundleLookups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_BundleLookup", @@ -5597,15 +4807,12 @@ }, "catalogSources": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlanCondition", @@ -5613,12 +4820,10 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "plan": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Step", @@ -5634,15 +4839,12 @@ }, "os_operatorhub_v1alpha1_Maintainer": { "type": "object", - "description": "", "properties": { "email": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5653,15 +4855,13 @@ }, "os_operatorhub_v1alpha1_NamedInstallStrategy": { "type": "object", - "description": "", "properties": { "spec": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDetailsDeployment", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StrategyDetailsDeployment" }, "strategy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5672,7 +4872,6 @@ }, "os_operatorhub_v1alpha1_RegistryPoll": { "type": "object", - "description": "", "properties": { "interval": { "$ref": "#/definitions/kubernetes_apimachinery_Duration", @@ -5687,27 +4886,22 @@ }, "os_operatorhub_v1alpha1_RegistryServiceStatus": { "type": "object", - "description": "", "properties": { "createdAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "serviceNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5718,11 +4912,9 @@ }, "os_operatorhub_v1alpha1_RequirementStatus": { "type": "object", - "description": "", "properties": { "dependents": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_DependentStatus", @@ -5730,32 +4922,25 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5766,31 +4951,24 @@ }, "os_operatorhub_v1alpha1_SpecDescriptor": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5802,31 +4980,24 @@ }, "os_operatorhub_v1alpha1_StatusDescriptor": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5838,19 +5009,16 @@ }, "os_operatorhub_v1alpha1_Step": { "type": "object", - "description": "", "properties": { "resolving": { - "type": "string", - "description": "" + "type": "string" }, "resource": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StepResource", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StepResource" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5861,35 +5029,27 @@ }, "os_operatorhub_v1alpha1_StepResource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "manifest": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "sourceName": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5900,19 +5060,16 @@ }, "os_operatorhub_v1alpha1_StrategyDeploymentPermissions": { "type": "object", - "description": "", "properties": { "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" } }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5923,20 +5080,16 @@ }, "os_operatorhub_v1alpha1_StrategyDeploymentSpec": { "type": "object", - "description": "", "properties": { "label": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "spec": { "$ref": "#/definitions/kubernetes_apps_DeploymentSpec", @@ -5951,11 +5104,9 @@ }, "os_operatorhub_v1alpha1_StrategyDetailsDeployment": { "type": "object", - "description": "", "properties": { "clusterPermissions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentPermissions", @@ -5964,7 +5115,6 @@ }, "deployments": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentSpec", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StrategyDeploymentSpec" @@ -5972,7 +5122,6 @@ }, "permissions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentPermissions", @@ -5988,17 +5137,14 @@ }, "os_operatorhub_v1alpha1_Subscription": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Subscription", "required": true }, @@ -6024,15 +5170,13 @@ }, "os_operatorhub_v1alpha1_SubscriptionCatalogHealth": { "type": "object", - "description": "", "properties": { "catalogSourceRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "healthy": { - "type": "boolean", - "description": "" + "type": "boolean" }, "lastUpdated": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6047,7 +5191,6 @@ }, "os_operatorhub_v1alpha1_SubscriptionCondition": { "type": "object", - "description": "", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6082,11 +5225,9 @@ }, "os_operatorhub_v1alpha1_SubscriptionConfig": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6095,7 +5236,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -6104,10 +5244,8 @@ }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6121,7 +5259,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -6130,7 +5267,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -6139,7 +5275,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -6155,17 +5290,14 @@ }, "os_operatorhub_v1alpha1_SubscriptionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Subscription", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.Subscription" @@ -6173,7 +5305,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SubscriptionList", "required": true }, @@ -6191,35 +5322,28 @@ }, "os_operatorhub_v1alpha1_SubscriptionSpec": { "type": "object", - "description": "", "properties": { "channel": { - "type": "string", - "description": "" + "type": "string" }, "config": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionConfig", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.SubscriptionConfig" }, "installPlanApproval": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "source": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" }, "startingCSV": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6230,11 +5354,9 @@ }, "os_operatorhub_v1alpha1_SubscriptionStatus": { "type": "object", - "description": "", "properties": { "catalogHealth": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionCatalogHealth", @@ -6243,7 +5365,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionCondition", @@ -6251,20 +5372,17 @@ } }, "currentCSV": { - "type": "string", - "description": "" + "type": "string" }, "installPlanGeneration": { - "type": "integer", - "description": "" + "type": "integer" }, "installPlanRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "installedCSV": { - "type": "string", - "description": "" + "type": "string" }, "installplan": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlanReference", @@ -6275,12 +5393,10 @@ "existingJavaType": "String" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "state": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6291,7 +5407,6 @@ }, "os_operatorhub_v1alpha1_UpdateStrategy": { "type": "object", - "description": "", "properties": { "registryPoll": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RegistryPoll", @@ -6306,56 +5421,44 @@ }, "os_operatorhub_v1alpha1_WebhookDescription": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "conversionCRDs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "deploymentName": { - "type": "string", - "description": "" + "type": "string" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "objectSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", @@ -6363,20 +5466,16 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "webhookPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, diff --git a/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/validation-schema.json index 08ad5936bbb..667c6f09dc7 100644 --- a/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/openshift-model-operatorhub/src/main/resources/schema/validation-schema.json @@ -5,38 +5,30 @@ "definitions": { "kubernetes_admissionregistration_v1_Rule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -47,47 +39,37 @@ }, "kubernetes_admissionregistration_v1_RuleWithOperations": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -98,23 +80,19 @@ }, "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -122,7 +100,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -131,7 +108,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -146,17 +122,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -164,7 +137,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -177,11 +149,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -193,7 +163,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -202,15 +171,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,19 +187,15 @@ }, "kubernetes_apimachinery_GroupVersionKind": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -244,11 +206,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -257,10 +217,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -273,23 +231,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -301,17 +254,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -319,7 +269,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -337,24 +286,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -365,27 +309,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -400,20 +339,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -421,7 +356,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -430,34 +364,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -465,18 +392,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -484,16 +408,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -504,31 +425,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -539,7 +453,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -548,15 +461,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -567,17 +477,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -585,25 +492,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -614,19 +517,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -637,11 +536,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -649,24 +546,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -677,11 +569,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -692,15 +582,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -711,7 +598,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -720,7 +606,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -729,19 +614,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -753,43 +634,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -800,17 +671,14 @@ }, "kubernetes_apps_Deployment": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -836,7 +704,6 @@ }, "kubernetes_apps_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -847,20 +714,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -871,27 +734,21 @@ }, "kubernetes_apps_DeploymentSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -914,19 +771,15 @@ }, "kubernetes_apps_DeploymentStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DeploymentCondition", @@ -935,24 +788,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -963,15 +811,13 @@ }, "kubernetes_apps_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "rollingUpdate": { "$ref": "#/definitions/kubernetes_apps_RollingUpdateDeployment", "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -982,7 +828,6 @@ }, "kubernetes_apps_RollingUpdateDeployment": { "type": "object", - "description": "", "properties": { "maxSurge": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -1001,23 +846,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1028,7 +868,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1051,31 +890,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1086,19 +918,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1109,30 +937,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1145,24 +967,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1174,35 +991,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1213,23 +1023,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1240,15 +1046,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1259,19 +1062,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1282,11 +1081,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1294,12 +1091,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1310,15 +1105,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1326,12 +1118,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1342,29 +1132,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1373,7 +1157,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1381,12 +1164,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1398,13 +1179,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1428,28 +1207,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1458,7 +1231,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1466,8 +1238,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1478,29 +1249,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1511,11 +1276,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1531,19 +1294,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -1558,15 +1318,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -1582,11 +1339,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -1601,15 +1356,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -1624,16 +1377,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -1648,7 +1398,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -1675,29 +1424,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1706,7 +1449,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1714,12 +1456,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1730,12 +1470,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1759,32 +1497,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1793,7 +1524,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1801,8 +1531,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1813,29 +1542,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1844,7 +1567,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1852,12 +1574,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1868,12 +1588,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1897,28 +1615,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1927,7 +1639,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1935,8 +1646,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1947,11 +1657,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -1966,15 +1674,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1986,36 +1691,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2027,28 +1724,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2063,15 +1754,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2082,23 +1770,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2109,19 +1792,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2132,19 +1811,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2155,15 +1830,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2171,16 +1843,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2191,15 +1861,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2210,7 +1877,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2233,20 +1899,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2257,15 +1919,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2276,56 +1935,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2336,19 +1983,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2359,7 +2002,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2378,11 +2020,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2393,19 +2033,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2416,11 +2052,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2440,11 +2074,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2459,23 +2091,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2487,11 +2114,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2500,7 +2125,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -2516,15 +2140,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2535,35 +2156,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2574,15 +2187,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -2598,16 +2208,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2618,7 +2225,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -2637,15 +2243,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2656,15 +2259,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2675,11 +2275,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2688,7 +2286,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2704,7 +2301,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -2712,16 +2308,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2732,11 +2325,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -2745,7 +2336,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -2761,20 +2351,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -2783,11 +2369,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2799,15 +2383,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2818,11 +2399,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2833,29 +2412,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -2868,17 +2441,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -2898,11 +2468,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -2910,12 +2478,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -2926,16 +2492,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -2944,7 +2507,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -2952,24 +2514,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2978,7 +2535,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -2986,21 +2542,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3008,20 +2560,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3029,49 +2577,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3080,7 +2618,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3089,7 +2626,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3105,7 +2641,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3124,19 +2659,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3147,15 +2678,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3166,39 +2695,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3209,15 +2732,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3232,31 +2752,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3267,43 +2780,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3314,19 +2818,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3337,11 +2838,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3350,7 +2849,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3366,23 +2864,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3393,47 +2886,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3444,15 +2927,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3463,15 +2943,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3482,19 +2959,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3505,11 +2978,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3517,12 +2988,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3533,15 +3002,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -3549,12 +3015,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3565,40 +3029,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3622,20 +3078,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3646,27 +3098,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3677,15 +3124,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3696,11 +3140,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -3715,28 +3157,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3747,23 +3183,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3774,19 +3206,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3797,7 +3225,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -3873,7 +3300,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -3930,15 +3356,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3949,31 +3372,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3984,7 +3400,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4011,7 +3426,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4138,23 +3552,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4165,15 +3574,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4184,19 +3591,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4207,50 +3610,39 @@ }, "kubernetes_rbac_v1_PolicyRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4262,11 +3654,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4277,7 +3667,6 @@ }, "os_operatorhub_manifests_OperatorVersion": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.OperatorVersion", "javaInterfaces": [ @@ -4286,15 +3675,12 @@ }, "os_operatorhub_manifests_PackageChannel": { "type": "object", - "description": "", "properties": { "currentCSV": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4305,23 +3691,19 @@ }, "os_operatorhub_manifests_PackageManifest": { "type": "object", - "description": "", "properties": { "channels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_manifests_PackageChannel", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.manifests.PackageChannel" } }, "defaultChannel": { - "type": "string", - "description": "" + "type": "string" }, "packageName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4332,17 +3714,14 @@ }, "os_operatorhub_v1_OperatorGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OperatorGroup", "required": true }, @@ -4368,17 +3747,14 @@ }, "os_operatorhub_v1_OperatorGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1_OperatorGroup", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1.OperatorGroup" @@ -4386,7 +3762,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OperatorGroupList", "required": true }, @@ -4404,27 +3779,22 @@ }, "os_operatorhub_v1_OperatorGroupSpec": { "type": "object", - "description": "", "properties": { "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "staticProvidedAPIs": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetNamespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4436,7 +3806,6 @@ }, "os_operatorhub_v1_OperatorGroupStatus": { "type": "object", - "description": "", "properties": { "lastUpdated": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4444,11 +3813,9 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "serviceAccountRef": { @@ -4464,19 +3831,15 @@ }, "os_operatorhub_v1alpha1_APIResourceReference": { "type": "object", - "description": "", "properties": { "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4487,11 +3850,9 @@ }, "os_operatorhub_v1alpha1_APIServiceDefinitions": { "type": "object", - "description": "", "properties": { "owned": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIServiceDescription", @@ -4500,7 +3861,6 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIServiceDescription", @@ -4516,11 +3876,9 @@ }, "os_operatorhub_v1alpha1_APIServiceDescription": { "type": "object", - "description": "", "properties": { "actionDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ActionDescriptor", @@ -4528,36 +3886,28 @@ } }, "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "deploymentName": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIResourceReference", @@ -4566,7 +3916,6 @@ }, "specDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SpecDescriptor", @@ -4575,7 +3924,6 @@ }, "statusDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StatusDescriptor", @@ -4583,8 +3931,7 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4595,31 +3942,24 @@ }, "os_operatorhub_v1alpha1_ActionDescriptor": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4631,15 +3971,12 @@ }, "os_operatorhub_v1alpha1_AppLink": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4650,7 +3987,6 @@ }, "os_operatorhub_v1alpha1_BundleLookup": { "type": "object", - "description": "", "properties": { "catalogSourceRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -4658,7 +3994,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_BundleLookupCondition", @@ -4666,16 +4001,13 @@ } }, "identifier": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "replaces": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4686,7 +4018,6 @@ }, "os_operatorhub_v1alpha1_BundleLookupCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -4697,20 +4028,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4721,11 +4048,9 @@ }, "os_operatorhub_v1alpha1_CRDDescription": { "type": "object", - "description": "", "properties": { "actionDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ActionDescriptor", @@ -4733,24 +4058,19 @@ } }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIResourceReference", @@ -4759,7 +4079,6 @@ }, "specDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SpecDescriptor", @@ -4768,7 +4087,6 @@ }, "statusDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StatusDescriptor", @@ -4776,8 +4094,7 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4788,17 +4105,14 @@ }, "os_operatorhub_v1alpha1_CatalogSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CatalogSource", "required": true }, @@ -4824,17 +4138,14 @@ }, "os_operatorhub_v1alpha1_CatalogSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CatalogSource", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.CatalogSource" @@ -4842,7 +4153,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CatalogSourceList", "required": true }, @@ -4860,52 +4170,41 @@ }, "os_operatorhub_v1alpha1_CatalogSourceSpec": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "configMap": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "icon": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Icon", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.Icon" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "publisher": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sourceType": { - "type": "string", - "description": "" + "type": "string" }, "updateStrategy": { "$ref": "#/definitions/os_operatorhub_v1alpha1_UpdateStrategy", @@ -4920,7 +4219,6 @@ }, "os_operatorhub_v1alpha1_CatalogSourceStatus": { "type": "object", - "description": "", "properties": { "configMapReference": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ConfigMapResourceReference", @@ -4935,12 +4233,10 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "registryService": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RegistryServiceStatus", @@ -4955,17 +4251,14 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersion": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceVersion", "required": true }, @@ -4991,7 +4284,6 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5002,16 +4294,13 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5022,17 +4311,14 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ClusterServiceVersion", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.ClusterServiceVersion" @@ -5040,7 +4326,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceVersionList", "required": true }, @@ -5058,14 +4343,11 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionSpec": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -5078,16 +4360,13 @@ "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.CustomResourceDefinitions" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "icon": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Icon", @@ -5100,7 +4379,6 @@ }, "installModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallMode", @@ -5109,25 +4387,20 @@ }, "keywords": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "links": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_AppLink", @@ -5136,7 +4409,6 @@ }, "maintainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Maintainer", @@ -5144,16 +4416,13 @@ } }, "maturity": { - "type": "string", - "description": "" + "type": "string" }, "minKubeVersion": { - "type": "string", - "description": "" + "type": "string" }, "nativeAPIs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionKind", @@ -5165,8 +4434,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.AppLink" }, "replaces": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -5178,7 +4446,6 @@ }, "webhookdefinitions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_WebhookDescription", @@ -5194,7 +4461,6 @@ }, "os_operatorhub_v1alpha1_ClusterServiceVersionStatus": { "type": "object", - "description": "", "properties": { "certsLastUpdated": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5206,7 +4472,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ClusterServiceVersionCondition", @@ -5222,20 +4487,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "requirementStatus": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RequirementStatus", @@ -5251,27 +4512,22 @@ }, "os_operatorhub_v1alpha1_ConfigMapResourceReference": { "type": "object", - "description": "", "properties": { "lastUpdateTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5282,11 +4538,9 @@ }, "os_operatorhub_v1alpha1_CustomResourceDefinitions": { "type": "object", - "description": "", "properties": { "owned": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CRDDescription", @@ -5295,7 +4549,6 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CRDDescription", @@ -5311,31 +4564,24 @@ }, "os_operatorhub_v1alpha1_DependentStatus": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5346,19 +4592,16 @@ }, "os_operatorhub_v1alpha1_GRPCConnectionState": { "type": "object", - "description": "", "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "lastConnect": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "lastObservedState": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5369,15 +4612,12 @@ }, "os_operatorhub_v1alpha1_Icon": { "type": "object", - "description": "", "properties": { "base64data": { - "type": "string", - "description": "" + "type": "string" }, "mediatype": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5388,15 +4628,12 @@ }, "os_operatorhub_v1alpha1_InstallMode": { "type": "object", - "description": "", "properties": { "supported": { - "type": "boolean", - "description": "" + "type": "boolean" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5407,17 +4644,14 @@ }, "os_operatorhub_v1alpha1_InstallPlan": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "InstallPlan", "required": true }, @@ -5443,7 +4677,6 @@ }, "os_operatorhub_v1alpha1_InstallPlanCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -5454,20 +4687,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5478,17 +4707,14 @@ }, "os_operatorhub_v1alpha1_InstallPlanList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlan", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.InstallPlan" @@ -5496,7 +4722,6 @@ }, "kind": { "type": "string", - "description": "", "default": "InstallPlanList", "required": true }, @@ -5514,23 +4739,18 @@ }, "os_operatorhub_v1alpha1_InstallPlanReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5541,35 +4761,27 @@ }, "os_operatorhub_v1alpha1_InstallPlanSpec": { "type": "object", - "description": "", "properties": { "approval": { - "type": "string", - "description": "" + "type": "string" }, "approved": { - "type": "boolean", - "description": "" + "type": "boolean" }, "clusterServiceVersionNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "generation": { - "type": "integer", - "description": "" + "type": "integer" }, "source": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5580,7 +4792,6 @@ }, "os_operatorhub_v1alpha1_InstallPlanStatus": { "type": "object", - "description": "", "properties": { "attenuatedServiceAccountRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -5588,7 +4799,6 @@ }, "bundleLookups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_BundleLookup", @@ -5597,15 +4807,12 @@ }, "catalogSources": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlanCondition", @@ -5613,12 +4820,10 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "plan": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Step", @@ -5634,15 +4839,12 @@ }, "os_operatorhub_v1alpha1_Maintainer": { "type": "object", - "description": "", "properties": { "email": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5653,15 +4855,13 @@ }, "os_operatorhub_v1alpha1_NamedInstallStrategy": { "type": "object", - "description": "", "properties": { "spec": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDetailsDeployment", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StrategyDetailsDeployment" }, "strategy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5672,7 +4872,6 @@ }, "os_operatorhub_v1alpha1_RegistryPoll": { "type": "object", - "description": "", "properties": { "interval": { "$ref": "#/definitions/kubernetes_apimachinery_Duration", @@ -5687,27 +4886,22 @@ }, "os_operatorhub_v1alpha1_RegistryServiceStatus": { "type": "object", - "description": "", "properties": { "createdAt": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "serviceNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5718,11 +4912,9 @@ }, "os_operatorhub_v1alpha1_RequirementStatus": { "type": "object", - "description": "", "properties": { "dependents": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_DependentStatus", @@ -5730,32 +4922,25 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5766,31 +4951,24 @@ }, "os_operatorhub_v1alpha1_SpecDescriptor": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5802,31 +4980,24 @@ }, "os_operatorhub_v1alpha1_StatusDescriptor": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5838,19 +5009,16 @@ }, "os_operatorhub_v1alpha1_Step": { "type": "object", - "description": "", "properties": { "resolving": { - "type": "string", - "description": "" + "type": "string" }, "resource": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StepResource", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StepResource" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5861,35 +5029,27 @@ }, "os_operatorhub_v1alpha1_StepResource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "manifest": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "sourceName": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5900,19 +5060,16 @@ }, "os_operatorhub_v1alpha1_StrategyDeploymentPermissions": { "type": "object", - "description": "", "properties": { "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" } }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5923,20 +5080,16 @@ }, "os_operatorhub_v1alpha1_StrategyDeploymentSpec": { "type": "object", - "description": "", "properties": { "label": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "spec": { "$ref": "#/definitions/kubernetes_apps_DeploymentSpec", @@ -5951,11 +5104,9 @@ }, "os_operatorhub_v1alpha1_StrategyDetailsDeployment": { "type": "object", - "description": "", "properties": { "clusterPermissions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentPermissions", @@ -5964,7 +5115,6 @@ }, "deployments": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentSpec", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StrategyDeploymentSpec" @@ -5972,7 +5122,6 @@ }, "permissions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentPermissions", @@ -5988,17 +5137,14 @@ }, "os_operatorhub_v1alpha1_Subscription": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Subscription", "required": true }, @@ -6024,15 +5170,13 @@ }, "os_operatorhub_v1alpha1_SubscriptionCatalogHealth": { "type": "object", - "description": "", "properties": { "catalogSourceRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "healthy": { - "type": "boolean", - "description": "" + "type": "boolean" }, "lastUpdated": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6047,7 +5191,6 @@ }, "os_operatorhub_v1alpha1_SubscriptionCondition": { "type": "object", - "description": "", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6082,11 +5225,9 @@ }, "os_operatorhub_v1alpha1_SubscriptionConfig": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6095,7 +5236,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -6104,10 +5244,8 @@ }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6121,7 +5259,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -6130,7 +5267,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -6139,7 +5275,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -6155,17 +5290,14 @@ }, "os_operatorhub_v1alpha1_SubscriptionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Subscription", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.Subscription" @@ -6173,7 +5305,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SubscriptionList", "required": true }, @@ -6191,35 +5322,28 @@ }, "os_operatorhub_v1alpha1_SubscriptionSpec": { "type": "object", - "description": "", "properties": { "channel": { - "type": "string", - "description": "" + "type": "string" }, "config": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionConfig", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.SubscriptionConfig" }, "installPlanApproval": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "source": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" }, "startingCSV": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6230,11 +5354,9 @@ }, "os_operatorhub_v1alpha1_SubscriptionStatus": { "type": "object", - "description": "", "properties": { "catalogHealth": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionCatalogHealth", @@ -6243,7 +5365,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionCondition", @@ -6251,20 +5372,17 @@ } }, "currentCSV": { - "type": "string", - "description": "" + "type": "string" }, "installPlanGeneration": { - "type": "integer", - "description": "" + "type": "integer" }, "installPlanRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "installedCSV": { - "type": "string", - "description": "" + "type": "string" }, "installplan": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlanReference", @@ -6275,12 +5393,10 @@ "existingJavaType": "String" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "state": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6291,7 +5407,6 @@ }, "os_operatorhub_v1alpha1_UpdateStrategy": { "type": "object", - "description": "", "properties": { "registryPoll": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RegistryPoll", @@ -6306,56 +5421,44 @@ }, "os_operatorhub_v1alpha1_WebhookDescription": { "type": "object", - "description": "", "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "conversionCRDs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "deploymentName": { - "type": "string", - "description": "" + "type": "string" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "objectSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", @@ -6363,20 +5466,16 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "webhookPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6490,28 +5589,22 @@ "actiondescriptor": { "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6538,19 +5631,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -6558,7 +5648,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -6567,7 +5656,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -6580,13 +5668,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -6594,7 +5680,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -6604,16 +5689,13 @@ "apiresourcereference": { "properties": { "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6622,7 +5704,6 @@ "properties": { "owned": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIServiceDescription", @@ -6631,7 +5712,6 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIServiceDescription", @@ -6645,7 +5725,6 @@ "properties": { "actionDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ActionDescriptor", @@ -6653,36 +5732,28 @@ } }, "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "deploymentName": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIResourceReference", @@ -6691,7 +5762,6 @@ }, "specDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SpecDescriptor", @@ -6700,7 +5770,6 @@ }, "statusDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StatusDescriptor", @@ -6708,8 +5777,7 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6717,12 +5785,10 @@ "applink": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6730,20 +5796,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6751,28 +5813,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -6780,16 +5836,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6802,7 +5855,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_BundleLookupCondition", @@ -6810,16 +5862,13 @@ } }, "identifier": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "replaces": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6835,20 +5884,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -6857,20 +5902,16 @@ "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -6880,13 +5921,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CatalogSource", "required": true }, @@ -6909,13 +5948,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CatalogSource", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.CatalogSource" @@ -6923,7 +5960,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CatalogSourceList", "required": true }, @@ -6937,49 +5973,39 @@ "catalogsourcespec": { "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "configMap": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "icon": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Icon", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.Icon" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "publisher": { - "type": "string", - "description": "" + "type": "string" }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "sourceType": { - "type": "string", - "description": "" + "type": "string" }, "updateStrategy": { "$ref": "#/definitions/os_operatorhub_v1alpha1_UpdateStrategy", @@ -7003,12 +6029,10 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "registryService": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RegistryServiceStatus", @@ -7021,31 +6045,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7053,20 +6071,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7075,13 +6090,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceVersion", "required": true }, @@ -7111,16 +6124,13 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7129,13 +6139,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ClusterServiceVersion", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.ClusterServiceVersion" @@ -7143,7 +6151,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceVersionList", "required": true }, @@ -7158,10 +6165,8 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -7174,16 +6179,13 @@ "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.CustomResourceDefinitions" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "icon": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Icon", @@ -7196,7 +6198,6 @@ }, "installModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallMode", @@ -7205,25 +6206,20 @@ }, "keywords": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "links": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_AppLink", @@ -7232,7 +6228,6 @@ }, "maintainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Maintainer", @@ -7240,16 +6235,13 @@ } }, "maturity": { - "type": "string", - "description": "" + "type": "string" }, "minKubeVersion": { - "type": "string", - "description": "" + "type": "string" }, "nativeAPIs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionKind", @@ -7261,8 +6253,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.AppLink" }, "replaces": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -7274,7 +6265,6 @@ }, "webhookdefinitions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_WebhookDescription", @@ -7296,7 +6286,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ClusterServiceVersionCondition", @@ -7312,20 +6301,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "requirementStatus": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_RequirementStatus", @@ -7338,12 +6323,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7351,16 +6334,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7369,7 +6349,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7377,12 +6356,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7394,20 +6371,16 @@ "existingJavaType": "String" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7415,12 +6388,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -7428,12 +6399,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -7442,25 +6411,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -7469,7 +6433,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -7477,12 +6440,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -7494,13 +6455,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -7524,28 +6483,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -7554,7 +6507,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -7562,8 +6514,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7571,26 +6522,21 @@ "containerport": { "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7599,7 +6545,6 @@ "properties": { "actionDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_ActionDescriptor", @@ -7607,24 +6552,19 @@ } }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_APIResourceReference", @@ -7633,7 +6573,6 @@ }, "specDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SpecDescriptor", @@ -7642,7 +6581,6 @@ }, "statusDescriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StatusDescriptor", @@ -7650,8 +6588,7 @@ } }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7659,27 +6596,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -7690,7 +6622,6 @@ "properties": { "owned": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CRDDescription", @@ -7699,7 +6630,6 @@ }, "required": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_CRDDescription", @@ -7712,28 +6642,22 @@ "dependentstatus": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7742,13 +6666,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Deployment", "required": true }, @@ -7778,20 +6700,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7799,24 +6717,19 @@ "deploymentspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "progressDeadlineSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -7836,16 +6749,13 @@ "deploymentstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "collisionCount": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apps_DeploymentCondition", @@ -7854,24 +6764,19 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -7883,8 +6788,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.apps.RollingUpdateDeployment" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -7893,7 +6797,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -7910,12 +6813,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -7927,12 +6828,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -7946,7 +6845,6 @@ "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -7955,8 +6853,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -7972,8 +6869,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -7986,12 +6882,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -8025,25 +6919,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -8052,7 +6941,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -8060,12 +6948,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -8076,12 +6962,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -8105,32 +6989,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -8139,7 +7016,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -8147,8 +7023,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8157,25 +7032,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -8184,7 +7054,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -8192,12 +7061,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -8208,12 +7075,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -8237,28 +7102,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -8267,7 +7126,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -8275,8 +7133,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8284,8 +7141,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -8298,11 +7154,9 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8311,33 +7165,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8349,25 +7196,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -8379,12 +7221,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8392,20 +7232,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8413,16 +7249,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8430,16 +7263,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -8447,12 +7277,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8460,16 +7288,13 @@ "groupversionkind": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8477,16 +7302,14 @@ "grpcconnectionstate": { "properties": { "address": { - "type": "string", - "description": "" + "type": "string" }, "lastConnect": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "lastObservedState": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8512,16 +7335,13 @@ "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8529,12 +7349,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8542,12 +7360,10 @@ "httpgetaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -8555,16 +7371,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8572,12 +7386,10 @@ "httpheader": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8585,12 +7397,10 @@ "icon": { "properties": { "base64data": { - "type": "string", - "description": "" + "type": "string" }, "mediatype": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8601,40 +7411,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8642,12 +7443,10 @@ "installmode": { "properties": { "supported": { - "type": "boolean", - "description": "" + "type": "boolean" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8656,13 +7455,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "InstallPlan", "required": true }, @@ -8692,20 +7489,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8714,13 +7507,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlan", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.InstallPlan" @@ -8728,7 +7519,6 @@ }, "kind": { "type": "string", - "description": "", "default": "InstallPlanList", "required": true }, @@ -8742,20 +7532,16 @@ "installplanreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8763,32 +7549,25 @@ "installplanspec": { "properties": { "approval": { - "type": "string", - "description": "" + "type": "string" }, "approved": { - "type": "boolean", - "description": "" + "type": "boolean" }, "clusterServiceVersionNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "generation": { - "type": "integer", - "description": "" + "type": "integer" }, "source": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8801,7 +7580,6 @@ }, "bundleLookups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_BundleLookup", @@ -8810,15 +7588,12 @@ }, "catalogSources": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlanCondition", @@ -8826,12 +7601,10 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "plan": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Step", @@ -8844,16 +7617,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -8862,53 +7632,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8916,16 +7675,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -8934,7 +7690,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -8943,10 +7698,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -8956,20 +7709,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8992,13 +7741,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -9006,7 +7753,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -9020,21 +7766,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9042,8 +7784,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9051,12 +7792,10 @@ "maintainer": { "properties": { "email": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9064,24 +7803,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -9097,8 +7832,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StrategyDetailsDeployment" }, "strategy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9106,16 +7840,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9124,7 +7855,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -9142,7 +7872,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -9154,20 +7883,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9177,7 +7902,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -9186,7 +7910,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -9199,12 +7922,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9213,16 +7934,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -9230,7 +7948,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -9239,34 +7956,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -9274,18 +7984,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -9293,16 +8000,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9310,32 +8014,25 @@ "objectreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9344,13 +8041,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OperatorGroup", "required": true }, @@ -9373,13 +8068,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1_OperatorGroup", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1.OperatorGroup" @@ -9387,7 +8080,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OperatorGroupList", "required": true }, @@ -9405,20 +8097,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "staticProvidedAPIs": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetNamespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9432,11 +8120,9 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "serviceAccountRef": { @@ -9452,28 +8138,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9481,12 +8161,10 @@ "packagechannel": { "properties": { "currentCSV": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9495,19 +8173,16 @@ "properties": { "channels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_manifests_PackageChannel", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.manifests.PackageChannel" } }, "defaultChannel": { - "type": "string", - "description": "" + "type": "string" }, "packageName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9519,11 +8194,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -9539,16 +8212,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9569,12 +8239,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -9582,12 +8250,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9596,7 +8262,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -9605,7 +8270,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -9623,16 +8287,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9641,7 +8302,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -9650,7 +8310,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -9664,16 +8323,13 @@ "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -9682,11 +8338,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9695,12 +8349,10 @@ "poddnsconfigoption": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9708,8 +8360,7 @@ "podreadinessgate": { "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -9718,25 +8369,20 @@ "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -9749,17 +8395,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -9777,7 +8420,6 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -9785,12 +8427,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -9801,16 +8441,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -9819,7 +8456,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -9827,24 +8463,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -9853,7 +8484,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -9861,21 +8491,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -9883,20 +8509,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -9904,49 +8526,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -9955,7 +8567,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -9964,7 +8575,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -9991,46 +8601,36 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10039,16 +8639,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10060,8 +8657,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -10073,32 +8669,27 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -10106,12 +8697,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -10123,8 +8712,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10132,28 +8720,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10164,40 +8746,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10218,20 +8792,16 @@ "existingJavaType": "String" }, "port": { - "type": "string", - "description": "" + "type": "string" }, "protocol": { - "type": "string", - "description": "" + "type": "string" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" }, "serviceNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10240,7 +8810,6 @@ "properties": { "dependents": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_DependentStatus", @@ -10248,32 +8817,25 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "uuid": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10281,16 +8843,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10299,7 +8859,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -10308,7 +8867,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -10335,34 +8893,27 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10371,43 +8922,34 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "operations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "scope": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10415,44 +8957,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10460,12 +8993,10 @@ "seccompprofile": { "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10473,12 +9004,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -10486,16 +9015,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -10504,7 +9030,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -10512,12 +9037,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -10525,12 +9048,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -10538,12 +9059,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10551,37 +9070,30 @@ "securitycontext": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -10602,20 +9114,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10623,12 +9131,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10636,17 +9142,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10654,28 +9157,22 @@ "specdescriptor": { "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10685,13 +9182,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -10699,25 +9194,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10725,16 +9216,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10742,28 +9230,22 @@ "statusdescriptor": { "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "x-descriptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10773,7 +9255,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -10781,24 +9262,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10806,16 +9282,14 @@ "step": { "properties": { "resolving": { - "type": "string", - "description": "" + "type": "string" }, "resource": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StepResource", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StepResource" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10823,32 +9297,25 @@ "stepresource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "manifest": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "sourceName": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10856,24 +9323,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10882,15 +9345,13 @@ "properties": { "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_rbac_v1_PolicyRule", "existingJavaType": "io.fabric8.kubernetes.api.model.rbac.PolicyRule" } }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -10899,16 +9360,13 @@ "properties": { "label": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "spec": { "$ref": "#/definitions/kubernetes_apps_DeploymentSpec", @@ -10921,7 +9379,6 @@ "properties": { "clusterPermissions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentPermissions", @@ -10930,7 +9387,6 @@ }, "deployments": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentSpec", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.StrategyDeploymentSpec" @@ -10938,7 +9394,6 @@ }, "permissions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_StrategyDeploymentPermissions", @@ -10952,13 +9407,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Subscription", "required": true }, @@ -10984,8 +9437,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "healthy": { - "type": "boolean", - "description": "" + "type": "boolean" }, "lastUpdated": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -11027,7 +9479,6 @@ "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -11036,7 +9487,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -11045,10 +9495,8 @@ }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -11062,7 +9510,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -11071,7 +9518,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -11080,7 +9526,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -11094,13 +9539,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "operators.coreos.com/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_Subscription", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.Subscription" @@ -11108,7 +9551,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SubscriptionList", "required": true }, @@ -11122,32 +9564,26 @@ "subscriptionspec": { "properties": { "channel": { - "type": "string", - "description": "" + "type": "string" }, "config": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionConfig", "existingJavaType": "io.fabric8.openshift.api.model.operatorhub.v1alpha1.SubscriptionConfig" }, "installPlanApproval": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "source": { - "type": "string", - "description": "" + "type": "string" }, "sourceNamespace": { - "type": "string", - "description": "" + "type": "string" }, "startingCSV": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11156,7 +9592,6 @@ "properties": { "catalogHealth": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionCatalogHealth", @@ -11165,7 +9600,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_operatorhub_v1alpha1_SubscriptionCondition", @@ -11173,20 +9607,17 @@ } }, "currentCSV": { - "type": "string", - "description": "" + "type": "string" }, "installPlanGeneration": { - "type": "integer", - "description": "" + "type": "integer" }, "installPlanRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "installedCSV": { - "type": "string", - "description": "" + "type": "string" }, "installplan": { "$ref": "#/definitions/os_operatorhub_v1alpha1_InstallPlanReference", @@ -11197,12 +9628,10 @@ "existingJavaType": "String" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "state": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11210,12 +9639,10 @@ "sysctl": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11223,8 +9650,7 @@ "tcpsocketaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -11236,8 +9662,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11245,25 +9670,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11275,16 +9695,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11292,16 +9709,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11309,12 +9723,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11404,7 +9816,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -11458,12 +9869,10 @@ "volumedevice": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11471,28 +9880,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11642,20 +10045,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11664,52 +10063,41 @@ "properties": { "admissionReviewVersions": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "conversionCRDs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "deploymentName": { - "type": "string", - "description": "" + "type": "string" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "matchPolicy": { - "type": "string", - "description": "" + "type": "string" }, "objectSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "reinvocationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_admissionregistration_v1_RuleWithOperations", @@ -11717,20 +10105,16 @@ } }, "sideEffects": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "webhookPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -11742,8 +10126,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -11751,16 +10134,13 @@ "windowssecuritycontextoptions": { "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true diff --git a/kubernetes-model-generator/openshift-model/src/main/resources/schema/kube-schema.json b/kubernetes-model-generator/openshift-model/src/main/resources/schema/kube-schema.json index 758349b7d2c..1822778d002 100644 --- a/kubernetes-model-generator/openshift-model/src/main/resources/schema/kube-schema.json +++ b/kubernetes-model-generator/openshift-model/src/main/resources/schema/kube-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,30 +74,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -120,45 +104,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -169,11 +145,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -185,7 +159,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -194,23 +167,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,15 +190,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -240,11 +206,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -253,10 +217,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -269,23 +231,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -297,17 +254,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -315,7 +269,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -333,24 +286,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -361,57 +309,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -422,27 +358,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -457,20 +388,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -478,7 +405,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -487,34 +413,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -522,18 +441,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -541,16 +457,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -561,31 +474,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -596,7 +502,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -605,34 +510,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -645,15 +543,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -664,14 +559,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -683,15 +575,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -702,17 +591,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -720,25 +606,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -749,19 +631,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -772,11 +650,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -784,24 +660,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -812,11 +683,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -827,15 +696,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -846,30 +712,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -882,7 +742,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -891,7 +750,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -900,19 +758,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -924,43 +778,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -971,17 +815,14 @@ }, "kubernetes_authentication_TokenReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authentication.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TokenReview", "required": true }, @@ -1006,20 +847,16 @@ }, "kubernetes_authentication_TokenReviewSpec": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "token": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1030,24 +867,19 @@ }, "kubernetes_authentication_TokenReviewStatus": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "authenticated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -1062,37 +894,29 @@ }, "kubernetes_authentication_UserInfo": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1103,30 +927,23 @@ }, "kubernetes_config_AuthInfo": { "type": "object", - "description": "", "properties": { "as": { - "type": "string", - "description": "" + "type": "string" }, "as-groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "as-user-extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -1136,20 +953,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.AuthProviderConfig" }, "client-certificate": { - "type": "string", - "description": "" + "type": "string" }, "client-certificate-data": { - "type": "string", - "description": "" + "type": "string" }, "client-key": { - "type": "string", - "description": "" + "type": "string" }, "client-key-data": { - "type": "string", - "description": "" + "type": "string" }, "exec": { "$ref": "#/definitions/kubernetes_config_ExecConfig", @@ -1157,7 +970,6 @@ }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1165,20 +977,16 @@ } }, "password": { - "type": "string", - "description": "" + "type": "string" }, "token": { - "type": "string", - "description": "" + "type": "string" }, "tokenFile": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1189,20 +997,16 @@ }, "kubernetes_config_AuthProviderConfig": { "type": "object", - "description": "", "properties": { "config": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1213,19 +1017,15 @@ }, "kubernetes_config_Cluster": { "type": "object", - "description": "", "properties": { "certificate-authority": { - "type": "string", - "description": "" + "type": "string" }, "certificate-authority-data": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1233,20 +1033,16 @@ } }, "insecure-skip-tls-verify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "proxy-url": { - "type": "string", - "description": "" + "type": "string" }, "server": { - "type": "string", - "description": "" + "type": "string" }, "tls-server-name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1257,15 +1053,12 @@ }, "kubernetes_config_Config": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "clusters": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedCluster", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedCluster" @@ -1273,19 +1066,16 @@ }, "contexts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedContext", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedContext" } }, "current-context": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1293,8 +1083,7 @@ } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "preferences": { "$ref": "#/definitions/kubernetes_config_Preferences", @@ -1302,7 +1091,6 @@ }, "users": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedAuthInfo", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedAuthInfo" @@ -1317,15 +1105,12 @@ }, "kubernetes_config_Context": { "type": "object", - "description": "", "properties": { "cluster": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1333,12 +1118,10 @@ } }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1349,35 +1132,28 @@ }, "kubernetes_config_ExecConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "args": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_ExecEnvVar", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecEnvVar" } }, "installHint": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1388,15 +1164,12 @@ }, "kubernetes_config_ExecEnvVar": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1407,11 +1180,9 @@ }, "kubernetes_config_NamedAuthInfo": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_config_AuthInfo", @@ -1426,15 +1197,13 @@ }, "kubernetes_config_NamedCluster": { "type": "object", - "description": "", "properties": { "cluster": { "$ref": "#/definitions/kubernetes_config_Cluster", "existingJavaType": "io.fabric8.kubernetes.api.model.Cluster" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1445,15 +1214,13 @@ }, "kubernetes_config_NamedContext": { "type": "object", - "description": "", "properties": { "context": { "$ref": "#/definitions/kubernetes_config_Context", "existingJavaType": "io.fabric8.kubernetes.api.model.Context" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1464,15 +1231,13 @@ }, "kubernetes_config_NamedExtension": { "type": "object", - "description": "", "properties": { "extension": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1483,15 +1248,12 @@ }, "kubernetes_config_Preferences": { "type": "object", - "description": "", "properties": { "colors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1507,23 +1269,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1534,7 +1291,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1557,31 +1313,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1592,19 +1341,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1615,30 +1360,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1651,24 +1390,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1680,35 +1414,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1719,23 +1446,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1746,15 +1469,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1765,19 +1485,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1788,11 +1504,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1800,12 +1514,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1816,15 +1528,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1832,12 +1541,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1848,29 +1555,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1879,7 +1580,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1887,12 +1587,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1904,13 +1602,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1934,28 +1630,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1964,7 +1654,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1972,8 +1661,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1984,29 +1672,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2017,11 +1699,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2037,19 +1717,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -2064,15 +1741,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2088,11 +1762,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2107,15 +1779,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -2130,16 +1800,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -2154,7 +1821,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -2181,29 +1847,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2212,7 +1872,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2220,12 +1879,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2236,12 +1893,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2265,32 +1920,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2299,7 +1947,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2307,8 +1954,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2319,29 +1965,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2350,7 +1990,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2358,12 +1997,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2374,12 +2011,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2403,28 +2038,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2433,7 +2062,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2441,8 +2069,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2453,11 +2080,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -2472,15 +2097,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2492,36 +2114,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2533,28 +2147,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2569,15 +2177,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2588,23 +2193,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2615,19 +2215,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2638,19 +2234,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2661,15 +2253,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2677,16 +2266,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2697,15 +2284,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2716,7 +2300,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2739,20 +2322,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2763,15 +2342,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2782,56 +2358,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2842,19 +2406,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2865,7 +2425,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2884,11 +2443,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2899,19 +2456,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2922,27 +2475,22 @@ }, "kubernetes_core_NamespaceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2953,11 +2501,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2977,11 +2523,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2996,23 +2540,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3024,11 +2563,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -3037,7 +2574,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -3053,15 +2589,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3072,35 +2605,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3111,15 +2636,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -3135,16 +2657,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3155,7 +2674,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3174,15 +2692,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3193,15 +2708,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3212,11 +2724,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3225,7 +2735,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3241,7 +2750,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3249,16 +2757,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3269,11 +2774,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3282,7 +2785,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3298,20 +2800,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -3320,11 +2818,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3336,15 +2832,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3355,11 +2848,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3370,29 +2861,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3405,17 +2890,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -3435,11 +2917,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -3447,12 +2927,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -3463,16 +2941,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -3481,7 +2956,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -3489,24 +2963,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3515,7 +2984,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3523,21 +2991,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3545,20 +3009,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3566,49 +3026,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3617,7 +3067,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3626,7 +3075,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3642,7 +3090,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3661,19 +3108,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3684,15 +3127,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3703,39 +3144,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3746,15 +3181,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3769,31 +3201,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3804,43 +3229,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3851,19 +3267,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3874,11 +3287,9 @@ }, "kubernetes_core_ResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3891,11 +3302,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3907,11 +3316,9 @@ }, "kubernetes_core_ResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3920,7 +3327,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3936,11 +3342,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3949,7 +3353,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3965,23 +3368,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3992,47 +3390,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4043,11 +3431,9 @@ }, "kubernetes_core_ScopeSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -4063,23 +3449,18 @@ }, "kubernetes_core_ScopedResourceSelectorRequirement": { "type": "object", - "description": "", "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4091,15 +3472,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4110,15 +3488,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4129,19 +3504,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4152,11 +3523,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4164,12 +3533,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4180,15 +3547,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4196,12 +3560,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4212,40 +3574,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -4269,20 +3623,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4293,27 +3643,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4324,15 +3669,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4343,11 +3685,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -4362,28 +3702,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4394,23 +3728,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4421,19 +3751,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4444,7 +3770,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4520,7 +3845,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -4577,15 +3901,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4596,31 +3917,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4631,7 +3945,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4658,7 +3971,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4785,23 +4097,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4812,15 +4119,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4831,19 +4136,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4854,11 +4155,9 @@ }, "kubernetes_rbac_AggregationRule": { "type": "object", - "description": "", "properties": { "clusterRoleSelectors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4874,11 +4173,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4889,43 +4186,34 @@ }, "os_authorization_Action": { "type": "object", - "description": "", "properties": { "content": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4936,7 +4224,6 @@ }, "os_authorization_ClusterRole": { "type": "object", - "description": "", "properties": { "aggregationRule": { "$ref": "#/definitions/kubernetes_rbac_AggregationRule", @@ -4944,13 +4231,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRole", "required": true }, @@ -4960,7 +4245,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -4975,25 +4259,20 @@ }, "os_authorization_ClusterRoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "groupNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBinding", "required": true }, @@ -5007,7 +4286,6 @@ }, "subjects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -5015,10 +4293,8 @@ }, "userNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5030,17 +4306,14 @@ }, "os_authorization_ClusterRoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ClusterRoleBinding", "existingJavaType": "io.fabric8.openshift.api.model.ClusterRoleBinding" @@ -5048,7 +4321,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBindingList", "required": true }, @@ -5066,17 +4338,14 @@ }, "os_authorization_ClusterRoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ClusterRole", "existingJavaType": "io.fabric8.openshift.api.model.ClusterRole" @@ -5084,7 +4353,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleList", "required": true }, @@ -5102,19 +4370,15 @@ }, "os_authorization_GroupRestriction": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -5129,11 +4393,9 @@ }, "os_authorization_LocalResourceAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5142,42 +4404,33 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "LocalResourceAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5188,11 +4441,9 @@ }, "os_authorization_LocalSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5202,61 +4453,47 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5267,15 +4504,12 @@ }, "os_authorization_PolicyRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "attributeRestrictions": { @@ -5284,36 +4518,28 @@ }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5325,11 +4551,9 @@ }, "os_authorization_ResourceAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5338,42 +4562,33 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ResourceAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5384,17 +4599,14 @@ }, "os_authorization_Role": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Role", "required": true }, @@ -5404,7 +4616,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -5420,25 +4631,20 @@ }, "os_authorization_RoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "groupNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "RoleBinding", "required": true }, @@ -5452,7 +4658,6 @@ }, "subjects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -5460,10 +4665,8 @@ }, "userNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5476,17 +4679,14 @@ }, "os_authorization_RoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_RoleBinding", "existingJavaType": "io.fabric8.openshift.api.model.RoleBinding" @@ -5494,7 +4694,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleBindingList", "required": true }, @@ -5512,17 +4711,14 @@ }, "os_authorization_RoleBindingRestriction": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RoleBindingRestriction", "required": true }, @@ -5544,7 +4740,6 @@ }, "os_authorization_RoleBindingRestrictionSpec": { "type": "object", - "description": "", "properties": { "grouprestriction": { "$ref": "#/definitions/os_authorization_GroupRestriction", @@ -5567,17 +4762,14 @@ }, "os_authorization_RoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_Role", "existingJavaType": "io.fabric8.openshift.api.model.Role" @@ -5585,7 +4777,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleList", "required": true }, @@ -5603,17 +4794,14 @@ }, "os_authorization_SelfSubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -5634,14 +4822,11 @@ }, "os_authorization_SelfSubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5653,15 +4838,12 @@ }, "os_authorization_ServiceAccountReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5672,19 +4854,15 @@ }, "os_authorization_ServiceAccountRestriction": { "type": "object", - "description": "", "properties": { "namespaces": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "serviceaccounts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ServiceAccountReference", "existingJavaType": "io.fabric8.openshift.api.model.ServiceAccountReference" @@ -5699,11 +4877,9 @@ }, "os_authorization_SubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5713,61 +4889,47 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5778,35 +4940,28 @@ }, "os_authorization_SubjectAccessReviewResponse": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReviewResponse", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5817,17 +4972,14 @@ }, "os_authorization_SubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectRulesReview", "required": true }, @@ -5848,27 +5000,21 @@ }, "os_authorization_SubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5879,15 +5025,12 @@ }, "os_authorization_SubjectRulesReviewStatus": { "type": "object", - "description": "", "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -5902,19 +5045,15 @@ }, "os_authorization_UserRestriction": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -5922,10 +5061,8 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5937,11 +5074,9 @@ }, "os_build_BinaryBuildSource": { "type": "object", - "description": "", "properties": { "asFile": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5952,15 +5087,13 @@ }, "os_build_BitbucketWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5971,17 +5104,14 @@ }, "os_build_Build": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Build", "required": true }, @@ -6007,7 +5137,6 @@ }, "os_build_BuildCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6018,20 +5147,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6042,17 +5167,14 @@ }, "os_build_BuildConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "BuildConfig", "required": true }, @@ -6078,17 +5200,14 @@ }, "os_build_BuildConfigList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_build_BuildConfig", "existingJavaType": "io.fabric8.openshift.api.model.BuildConfig" @@ -6096,7 +5215,6 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildConfigList", "required": true }, @@ -6114,23 +5232,18 @@ }, "os_build_BuildConfigSpec": { "type": "object", - "description": "", "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "failedBuildsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6151,12 +5264,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "runPolicy": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -6167,12 +5278,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.BuildStrategy" }, "successfulBuildsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "triggers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerPolicy", @@ -6188,11 +5297,9 @@ }, "os_build_BuildConfigStatus": { "type": "object", - "description": "", "properties": { "lastVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -6204,17 +5311,14 @@ }, "os_build_BuildList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_build_Build", "existingJavaType": "io.fabric8.openshift.api.model.Build" @@ -6222,7 +5326,6 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildList", "required": true }, @@ -6240,11 +5343,9 @@ }, "os_build_BuildOutput": { "type": "object", - "description": "", "properties": { "imageLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageLabel", @@ -6268,29 +5369,23 @@ }, "os_build_BuildPostCommitSpec": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "script": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6301,11 +5396,9 @@ }, "os_build_BuildRequest": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, @@ -6319,7 +5412,6 @@ }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6332,13 +5424,11 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildRequest", "required": true }, "lastVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "metadata": { @@ -6355,7 +5445,6 @@ }, "triggeredBy": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerCause", @@ -6376,7 +5465,6 @@ }, "os_build_BuildSource": { "type": "object", - "description": "", "properties": { "binary": { "$ref": "#/definitions/os_build_BinaryBuildSource", @@ -6384,7 +5472,6 @@ }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ConfigMapBuildSource", @@ -6392,12 +5479,10 @@ } }, "contextDir": { - "type": "string", - "description": "" + "type": "string" }, "dockerfile": { - "type": "string", - "description": "" + "type": "string" }, "git": { "$ref": "#/definitions/os_build_GitBuildSource", @@ -6405,7 +5490,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageSource", @@ -6414,7 +5498,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_SecretBuildSource", @@ -6426,8 +5509,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6438,19 +5520,15 @@ }, "os_build_BuildSpec": { "type": "object", - "description": "", "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6471,8 +5549,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -6484,7 +5561,6 @@ }, "triggeredBy": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerCause", @@ -6500,11 +5576,9 @@ }, "os_build_BuildStatus": { "type": "object", - "description": "", "properties": { "cancelled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "completionTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6512,7 +5586,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildCondition", @@ -6525,36 +5598,29 @@ }, "duration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "logSnippet": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "output": { "$ref": "#/definitions/os_build_BuildStatusOutput", "existingJavaType": "io.fabric8.openshift.api.model.BuildStatusOutput" }, "outputDockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "stages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_StageInfo", @@ -6574,7 +5640,6 @@ }, "os_build_BuildStatusOutput": { "type": "object", - "description": "", "properties": { "to": { "$ref": "#/definitions/os_build_BuildStatusOutputTo", @@ -6589,11 +5654,9 @@ }, "os_build_BuildStatusOutputTo": { "type": "object", - "description": "", "properties": { "imageDigest": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6604,7 +5667,6 @@ }, "os_build_BuildStrategy": { "type": "object", - "description": "", "properties": { "customStrategy": { "$ref": "#/definitions/os_build_CustomBuildStrategy", @@ -6623,8 +5685,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceBuildStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6635,7 +5696,6 @@ }, "os_build_BuildTriggerCause": { "type": "object", - "description": "", "properties": { "bitbucketWebHook": { "$ref": "#/definitions/os_build_BitbucketWebHookCause", @@ -6658,8 +5718,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.ImageChangeCause" }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6670,7 +5729,6 @@ }, "os_build_BuildTriggerPolicy": { "type": "object", - "description": "", "properties": { "bitbucket": { "$ref": "#/definitions/os_build_WebHookTrigger", @@ -6693,8 +5751,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.ImageChangeTrigger" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6705,19 +5762,15 @@ }, "os_build_CommonSpec": { "type": "object", - "description": "", "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6738,8 +5791,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -6758,15 +5810,13 @@ }, "os_build_CommonWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6777,15 +5827,13 @@ }, "os_build_ConfigMapBuildSource": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "destinationDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6796,15 +5844,12 @@ }, "os_build_CustomBuildStrategy": { "type": "object", - "description": "", "properties": { "buildAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6812,12 +5857,10 @@ } }, "exposeDockerSocket": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -6829,7 +5872,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_SecretSpec", @@ -6845,11 +5887,9 @@ }, "os_build_DockerBuildStrategy": { "type": "object", - "description": "", "properties": { "buildArgs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6857,12 +5897,10 @@ } }, "dockerfilePath": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6870,20 +5908,17 @@ } }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "imageOptimizationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "noCache": { - "type": "boolean", - "description": "" + "type": "boolean" }, "pullSecret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6898,11 +5933,9 @@ }, "os_build_DockerStrategyOptions": { "type": "object", - "description": "", "properties": { "buildArgs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6910,8 +5943,7 @@ } }, "noCache": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -6922,15 +5954,13 @@ }, "os_build_GenericWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6941,27 +5971,21 @@ }, "os_build_GitBuildSource": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" }, "ref": { - "type": "string", - "description": "" + "type": "string" }, "uri": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6972,15 +5996,13 @@ }, "os_build_GitHubWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6991,15 +6013,13 @@ }, "os_build_GitLabWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7010,23 +6030,20 @@ }, "os_build_GitSourceRevision": { "type": "object", - "description": "", "properties": { "author": { "$ref": "#/definitions/os_build_SourceControlUser", "existingJavaType": "io.fabric8.openshift.api.model.SourceControlUser" }, "commit": { - "type": "string", - "description": "" + "type": "string" }, "committer": { "$ref": "#/definitions/os_build_SourceControlUser", "existingJavaType": "io.fabric8.openshift.api.model.SourceControlUser" }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7037,15 +6054,13 @@ }, "os_build_ImageChangeCause": { "type": "object", - "description": "", "properties": { "fromRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "imageID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7056,19 +6071,16 @@ }, "os_build_ImageChangeTrigger": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "lastTriggeredImageID": { - "type": "string", - "description": "" + "type": "string" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7079,15 +6091,12 @@ }, "os_build_ImageLabel": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7098,15 +6107,12 @@ }, "os_build_ImageSource": { "type": "object", - "description": "", "properties": { "as": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "from": { @@ -7115,7 +6121,6 @@ }, "paths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageSourcePath", @@ -7135,15 +6140,12 @@ }, "os_build_ImageSourcePath": { "type": "object", - "description": "", "properties": { "destinationDir": { - "type": "string", - "description": "" + "type": "string" }, "sourcePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7154,11 +6156,9 @@ }, "os_build_JenkinsPipelineBuildStrategy": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -7166,12 +6166,10 @@ } }, "jenkinsfile": { - "type": "string", - "description": "" + "type": "string" }, "jenkinsfilePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7182,19 +6180,15 @@ }, "os_build_ProxyConfig": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7205,11 +6199,9 @@ }, "os_build_SecretBuildSource": { "type": "object", - "description": "", "properties": { "destinationDir": { - "type": "string", - "description": "" + "type": "string" }, "secret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7224,11 +6216,9 @@ }, "os_build_SecretLocalReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7239,11 +6229,9 @@ }, "os_build_SecretSpec": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "secretSource": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7258,11 +6246,9 @@ }, "os_build_SourceBuildStrategy": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -7270,24 +6256,21 @@ } }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "incremental": { - "type": "boolean", - "description": "" + "type": "boolean" }, "pullSecret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "scripts": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7298,15 +6281,12 @@ }, "os_build_SourceControlUser": { "type": "object", - "description": "", "properties": { "email": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7317,15 +6297,13 @@ }, "os_build_SourceRevision": { "type": "object", - "description": "", "properties": { "git": { "$ref": "#/definitions/os_build_GitSourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.GitSourceRevision" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7336,11 +6314,9 @@ }, "os_build_SourceStrategyOptions": { "type": "object", - "description": "", "properties": { "incremental": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7351,16 +6327,13 @@ }, "os_build_StageInfo": { "type": "object", - "description": "", "properties": { "durationMilliseconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7368,7 +6341,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_StepInfo", @@ -7384,16 +6356,13 @@ }, "os_build_StepInfo": { "type": "object", - "description": "", "properties": { "durationMilliseconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7408,15 +6377,12 @@ }, "os_build_WebHookTrigger": { "type": "object", - "description": "", "properties": { "allowEnv": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secret": { - "type": "string", - "description": "" + "type": "string" }, "secretReference": { "$ref": "#/definitions/os_build_SecretLocalReference", @@ -7431,17 +6397,14 @@ }, "os_config_APIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIServer", "required": true }, @@ -7466,11 +6429,9 @@ }, "os_config_APIServerEncryption": { "type": "object", - "description": "", "properties": { "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7481,17 +6442,14 @@ }, "os_config_APIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_APIServer", "existingJavaType": "io.fabric8.openshift.api.model.APIServer" @@ -7499,7 +6457,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIServerList", "required": true }, @@ -7517,15 +6474,12 @@ }, "os_config_APIServerNamedServingCert": { "type": "object", - "description": "", "properties": { "names": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "servingCertificate": { @@ -7541,11 +6495,9 @@ }, "os_config_APIServerServingCerts": { "type": "object", - "description": "", "properties": { "namedCertificates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_APIServerNamedServingCert", @@ -7561,15 +6513,12 @@ }, "os_config_APIServerSpec": { "type": "object", - "description": "", "properties": { "additionalCORSAllowedOrigins": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "audit": { @@ -7601,7 +6550,6 @@ }, "os_config_APIServerStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.APIServerStatus", "javaInterfaces": [ @@ -7610,11 +6558,9 @@ }, "os_config_AWSPlatformSpec": { "type": "object", - "description": "", "properties": { "serviceEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_AWSServiceEndpoint", @@ -7630,15 +6576,12 @@ }, "os_config_AWSPlatformStatus": { "type": "object", - "description": "", "properties": { "region": { - "type": "string", - "description": "" + "type": "string" }, "serviceEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_AWSServiceEndpoint", @@ -7654,15 +6597,12 @@ }, "os_config_AWSServiceEndpoint": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7673,11 +6613,9 @@ }, "os_config_Audit": { "type": "object", - "description": "", "properties": { "profile": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7688,7 +6626,6 @@ }, "os_config_AzurePlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.AzurePlatformSpec", "javaInterfaces": [ @@ -7697,19 +6634,15 @@ }, "os_config_AzurePlatformStatus": { "type": "object", - "description": "", "properties": { "cloudName": { - "type": "string", - "description": "" + "type": "string" }, "networkResourceGroupName": { - "type": "string", - "description": "" + "type": "string" }, "resourceGroupName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7720,7 +6653,6 @@ }, "os_config_BareMetalPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.BareMetalPlatformSpec", "javaInterfaces": [ @@ -7729,19 +6661,15 @@ }, "os_config_BareMetalPlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7752,7 +6680,6 @@ }, "os_config_BasicAuthIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -7767,8 +6694,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7779,17 +6705,14 @@ }, "os_config_ClusterOperator": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterOperator", "required": true }, @@ -7814,17 +6737,14 @@ }, "os_config_ClusterOperatorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_ClusterOperator", "existingJavaType": "io.fabric8.openshift.api.model.ClusterOperator" @@ -7832,7 +6752,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterOperatorList", "required": true }, @@ -7850,7 +6769,6 @@ }, "os_config_ClusterOperatorSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.ClusterOperatorSpec", "javaInterfaces": [ @@ -7859,11 +6777,9 @@ }, "os_config_ClusterOperatorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ClusterOperatorStatusCondition", @@ -7876,7 +6792,6 @@ }, "relatedObjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ObjectReference", @@ -7885,7 +6800,6 @@ }, "versions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_OperandVersion", @@ -7901,27 +6815,22 @@ }, "os_config_ClusterOperatorStatusCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7932,17 +6841,14 @@ }, "os_config_ClusterVersion": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterVersion", "required": true }, @@ -7967,17 +6873,14 @@ }, "os_config_ClusterVersionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_ClusterVersion", "existingJavaType": "io.fabric8.openshift.api.model.ClusterVersion" @@ -7985,7 +6888,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterVersionList", "required": true }, @@ -8003,15 +6905,12 @@ }, "os_config_ClusterVersionSpec": { "type": "object", - "description": "", "properties": { "channel": { - "type": "string", - "description": "" + "type": "string" }, "clusterID": { - "type": "string", - "description": "" + "type": "string" }, "desiredUpdate": { "$ref": "#/definitions/os_config_Update", @@ -8019,7 +6918,6 @@ }, "overrides": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ComponentOverride", @@ -8027,8 +6925,7 @@ } }, "upstream": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8039,11 +6936,9 @@ }, "os_config_ClusterVersionStatus": { "type": "object", - "description": "", "properties": { "availableUpdates": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Release", "existingJavaType": "io.fabric8.openshift.api.model.Release" @@ -8051,7 +6946,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ClusterOperatorStatusCondition", @@ -8064,7 +6958,6 @@ }, "history": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_UpdateHistory", @@ -8073,12 +6966,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "versionHash": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8089,27 +6980,21 @@ }, "os_config_ComponentOverride": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "unmanaged": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -8120,15 +7005,12 @@ }, "os_config_ConfigMapFileReference": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8139,11 +7021,9 @@ }, "os_config_ConfigMapNameReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8154,24 +7034,19 @@ }, "os_config_CustomFeatureGates": { "type": "object", - "description": "", "properties": { "disabled": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "enabled": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8183,19 +7058,15 @@ }, "os_config_CustomTLSProfile": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8206,18 +7077,14 @@ }, "os_config_DNSZone": { "type": "object", - "description": "", "properties": { "id": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -8230,17 +7097,14 @@ }, "os_config_FeatureGate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "FeatureGate", "required": true }, @@ -8265,17 +7129,14 @@ }, "os_config_FeatureGateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_FeatureGate", "existingJavaType": "io.fabric8.openshift.api.model.FeatureGate" @@ -8283,7 +7144,6 @@ }, "kind": { "type": "string", - "description": "", "default": "FeatureGateList", "required": true }, @@ -8301,15 +7161,13 @@ }, "os_config_FeatureGateSelection": { "type": "object", - "description": "", "properties": { "customNoUpgrade": { "$ref": "#/definitions/os_config_CustomFeatureGates", "existingJavaType": "io.fabric8.openshift.api.model.CustomFeatureGates" }, "featureSet": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8320,15 +7178,13 @@ }, "os_config_FeatureGateSpec": { "type": "object", - "description": "", "properties": { "customNoUpgrade": { "$ref": "#/definitions/os_config_CustomFeatureGates", "existingJavaType": "io.fabric8.openshift.api.model.CustomFeatureGates" }, "featureSet": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8339,7 +7195,6 @@ }, "os_config_FeatureGateStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.FeatureGateStatus", "javaInterfaces": [ @@ -8348,7 +7203,6 @@ }, "os_config_GCPPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.GCPPlatformSpec", "javaInterfaces": [ @@ -8357,15 +7211,12 @@ }, "os_config_GCPPlatformStatus": { "type": "object", - "description": "", "properties": { "projectID": { - "type": "string", - "description": "" + "type": "string" }, "region": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8376,40 +7227,33 @@ }, "os_config_GitHubIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "organizations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "teams": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8421,23 +7265,20 @@ }, "os_config_GitLabIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8448,19 +7289,16 @@ }, "os_config_GoogleIdentityProvider": { "type": "object", - "description": "", "properties": { "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "hostedDomain": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8471,7 +7309,6 @@ }, "os_config_HTPasswdIdentityProvider": { "type": "object", - "description": "", "properties": { "fileData": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -8486,15 +7323,12 @@ }, "os_config_HubSource": { "type": "object", - "description": "", "properties": { "disabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8505,23 +7339,18 @@ }, "os_config_HubSourceStatus": { "type": "object", - "description": "", "properties": { "disabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8532,7 +7361,6 @@ }, "os_config_IBMCloudPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.IBMCloudPlatformSpec", "javaInterfaces": [ @@ -8541,19 +7369,15 @@ }, "os_config_IBMCloudPlatformStatus": { "type": "object", - "description": "", "properties": { "location": { - "type": "string", - "description": "" + "type": "string" }, "providerType": { - "type": "string", - "description": "" + "type": "string" }, "resourceGroupName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8564,7 +7388,6 @@ }, "os_config_IdentityProvider": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_config_BasicAuthIdentityProvider", @@ -8595,12 +7418,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.LDAPIdentityProvider" }, "mappingMethod": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "openID": { "$ref": "#/definitions/os_config_OpenIDIdentityProvider", @@ -8611,8 +7432,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RequestHeaderIdentityProvider" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8623,7 +7443,6 @@ }, "os_config_IdentityProviderConfig": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_config_BasicAuthIdentityProvider", @@ -8662,8 +7481,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RequestHeaderIdentityProvider" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8674,17 +7492,14 @@ }, "os_config_Infrastructure": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Infrastructure", "required": true }, @@ -8709,17 +7524,14 @@ }, "os_config_InfrastructureList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Infrastructure", "existingJavaType": "io.fabric8.openshift.api.model.Infrastructure" @@ -8727,7 +7539,6 @@ }, "kind": { "type": "string", - "description": "", "default": "InfrastructureList", "required": true }, @@ -8745,7 +7556,6 @@ }, "os_config_InfrastructureSpec": { "type": "object", - "description": "", "properties": { "cloudConfig": { "$ref": "#/definitions/os_config_ConfigMapFileReference", @@ -8764,27 +7574,21 @@ }, "os_config_InfrastructureStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalURI": { - "type": "string", - "description": "" + "type": "string" }, "apiServerURL": { - "type": "string", - "description": "" + "type": "string" }, "etcdDiscoveryDomain": { - "type": "string", - "description": "" + "type": "string" }, "infrastructureName": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" }, "platformStatus": { "$ref": "#/definitions/os_config_PlatformStatus", @@ -8799,7 +7603,6 @@ }, "os_config_IntermediateTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.IntermediateTLSProfile", "javaInterfaces": [ @@ -8808,15 +7611,13 @@ }, "os_config_KeystoneIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "domainName": { - "type": "string", - "description": "" + "type": "string" }, "tlsClientCert": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -8827,8 +7628,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8839,41 +7639,32 @@ }, "os_config_LDAPAttributeMapping": { "type": "object", - "description": "", "properties": { "email": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "id": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsername": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8885,15 +7676,13 @@ }, "os_config_LDAPIdentityProvider": { "type": "object", - "description": "", "properties": { "attributes": { "$ref": "#/definitions/os_config_LDAPAttributeMapping", "existingJavaType": "io.fabric8.openshift.api.model.LDAPAttributeMapping" }, "bindDN": { - "type": "string", - "description": "" + "type": "string" }, "bindPassword": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -8904,12 +7693,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "insecure": { - "type": "boolean", - "description": "" + "type": "boolean" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8920,7 +7707,6 @@ }, "os_config_ModernTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.ModernTLSProfile", "javaInterfaces": [ @@ -8929,17 +7715,14 @@ }, "os_config_OAuth": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OAuth", "required": true }, @@ -8964,17 +7747,14 @@ }, "os_config_OAuthList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_OAuth", "existingJavaType": "io.fabric8.openshift.api.model.OAuth" @@ -8982,7 +7762,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthList", "required": true }, @@ -9000,7 +7779,6 @@ }, "os_config_OAuthRemoteConnectionInfo": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -9015,8 +7793,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9027,11 +7804,9 @@ }, "os_config_OAuthSpec": { "type": "object", - "description": "", "properties": { "identityProviders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_IdentityProvider", @@ -9055,7 +7830,6 @@ }, "os_config_OAuthStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OAuthStatus", "javaInterfaces": [ @@ -9064,7 +7838,6 @@ }, "os_config_OAuthTemplates": { "type": "object", - "description": "", "properties": { "error": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -9087,23 +7860,18 @@ }, "os_config_ObjectReference": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9114,7 +7882,6 @@ }, "os_config_OldTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OldTLSProfile", "javaInterfaces": [ @@ -9123,33 +7890,26 @@ }, "os_config_OpenIDClaims": { "type": "object", - "description": "", "properties": { "email": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsername": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9161,7 +7921,6 @@ }, "os_config_OpenIDIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -9172,8 +7931,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OpenIDClaims" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -9181,25 +7939,20 @@ }, "extraAuthorizeParameters": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "extraScopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "issuer": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9210,7 +7963,6 @@ }, "os_config_OpenStackPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OpenStackPlatformSpec", "javaInterfaces": [ @@ -9219,23 +7971,18 @@ }, "os_config_OpenStackPlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "cloudName": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9246,15 +7993,12 @@ }, "os_config_OperandVersion": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9265,17 +8009,14 @@ }, "os_config_OperatorHub": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OperatorHub", "required": true }, @@ -9300,17 +8041,14 @@ }, "os_config_OperatorHubList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_OperatorHub", "existingJavaType": "io.fabric8.openshift.api.model.OperatorHub" @@ -9318,7 +8056,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OperatorHubList", "required": true }, @@ -9336,15 +8073,12 @@ }, "os_config_OperatorHubSpec": { "type": "object", - "description": "", "properties": { "disableAllDefaultSources": { - "type": "boolean", - "description": "" + "type": "boolean" }, "sources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_HubSource", @@ -9360,11 +8094,9 @@ }, "os_config_OperatorHubStatus": { "type": "object", - "description": "", "properties": { "sources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_HubSourceStatus", @@ -9380,7 +8112,6 @@ }, "os_config_OvirtPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OvirtPlatformSpec", "javaInterfaces": [ @@ -9389,19 +8120,15 @@ }, "os_config_OvirtPlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9412,7 +8139,6 @@ }, "os_config_PlatformSpec": { "type": "object", - "description": "", "properties": { "aws": { "$ref": "#/definitions/os_config_AWSPlatformSpec", @@ -9443,8 +8169,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OvirtPlatformSpec" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "vsphere": { "$ref": "#/definitions/os_config_VSpherePlatformSpec", @@ -9459,7 +8184,6 @@ }, "os_config_PlatformStatus": { "type": "object", - "description": "", "properties": { "aws": { "$ref": "#/definitions/os_config_AWSPlatformStatus", @@ -9490,8 +8214,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OvirtPlatformStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "vsphere": { "$ref": "#/definitions/os_config_VSpherePlatformStatus", @@ -9506,17 +8229,14 @@ }, "os_config_Proxy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Proxy", "required": true }, @@ -9541,17 +8261,14 @@ }, "os_config_ProxyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Proxy", "existingJavaType": "io.fabric8.openshift.api.model.Proxy" @@ -9559,7 +8276,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ProxyList", "required": true }, @@ -9577,27 +8293,21 @@ }, "os_config_ProxySpec": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" }, "readinessEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "trustedCA": { @@ -9613,19 +8323,15 @@ }, "os_config_ProxyStatus": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9636,28 +8342,22 @@ }, "os_config_Release": { "type": "object", - "description": "", "properties": { "channels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9668,59 +8368,46 @@ }, "os_config_RequestHeaderIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "challengeURL": { - "type": "string", - "description": "" + "type": "string" }, "clientCommonNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "emailHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "headers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "loginURL": { - "type": "string", - "description": "" + "type": "string" }, "nameHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsernameHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9732,17 +8419,14 @@ }, "os_config_Scheduler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Scheduler", "required": true }, @@ -9767,17 +8451,14 @@ }, "os_config_SchedulerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Scheduler", "existingJavaType": "io.fabric8.openshift.api.model.Scheduler" @@ -9785,7 +8466,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SchedulerList", "required": true }, @@ -9803,15 +8483,12 @@ }, "os_config_SchedulerSpec": { "type": "object", - "description": "", "properties": { "defaultNodeSelector": { - "type": "string", - "description": "" + "type": "string" }, "mastersSchedulable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "policy": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -9826,7 +8503,6 @@ }, "os_config_SchedulerStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.SchedulerStatus", "javaInterfaces": [ @@ -9835,11 +8511,9 @@ }, "os_config_SecretNameReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9850,19 +8524,15 @@ }, "os_config_TLSProfileSpec": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9873,7 +8543,6 @@ }, "os_config_TLSSecurityProfile": { "type": "object", - "description": "", "properties": { "custom": { "$ref": "#/definitions/os_config_CustomTLSProfile", @@ -9892,8 +8561,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OldTLSProfile" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9904,19 +8572,16 @@ }, "os_config_TokenConfig": { "type": "object", - "description": "", "properties": { "accessTokenInactivityTimeout": { "$ref": "#/definitions/kubernetes_apimachinery_Duration", "existingJavaType": "io.fabric8.kubernetes.api.model.Duration" }, "accessTokenInactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "accessTokenMaxAgeSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -9927,19 +8592,15 @@ }, "os_config_Update": { "type": "object", - "description": "", "properties": { "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9950,31 +8611,26 @@ }, "os_config_UpdateHistory": { "type": "object", - "description": "", "properties": { "completionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "startedTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "state": { - "type": "string", - "description": "" + "type": "string" }, "verified": { - "type": "boolean", - "description": "" + "type": "boolean" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9985,7 +8641,6 @@ }, "os_config_VSpherePlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.VSpherePlatformSpec", "javaInterfaces": [ @@ -9994,19 +8649,15 @@ }, "os_config_VSpherePlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10017,20 +8668,16 @@ }, "os_deploy_CustomDeploymentStrategyParams": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "environment": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10038,8 +8685,7 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10050,15 +8696,13 @@ }, "os_deploy_DeploymentCause": { "type": "object", - "description": "", "properties": { "imageTrigger": { "$ref": "#/definitions/os_deploy_DeploymentCauseImageTrigger", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentCauseImageTrigger" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10069,7 +8713,6 @@ }, "os_deploy_DeploymentCauseImageTrigger": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10084,7 +8727,6 @@ }, "os_deploy_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -10095,20 +8737,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10119,17 +8757,14 @@ }, "os_deploy_DeploymentConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DeploymentConfig", "required": true }, @@ -10155,17 +8790,14 @@ }, "os_deploy_DeploymentConfigList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentConfig", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentConfig" @@ -10173,7 +8805,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentConfigList", "required": true }, @@ -10191,30 +8822,23 @@ }, "os_deploy_DeploymentConfigSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -10227,12 +8851,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "test": { - "type": "boolean", - "description": "" + "type": "boolean" }, "triggers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentTriggerPolicy", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentTriggerPolicy" @@ -10247,15 +8869,12 @@ }, "os_deploy_DeploymentConfigStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_deploy_DeploymentCondition", @@ -10268,29 +8887,23 @@ }, "latestVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -10301,19 +8914,16 @@ }, "os_deploy_DeploymentDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentCause", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentCause" } }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10324,19 +8934,15 @@ }, "os_deploy_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -10346,10 +8952,8 @@ }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -10366,8 +8970,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RollingDeploymentStrategyParams" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10378,19 +8981,15 @@ }, "os_deploy_DeploymentTriggerImageChangeParams": { "type": "object", - "description": "", "properties": { "automatic": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containerNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "from": { @@ -10398,8 +8997,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "lastTriggeredImage": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10410,15 +9008,13 @@ }, "os_deploy_DeploymentTriggerPolicy": { "type": "object", - "description": "", "properties": { "imageChangeParams": { "$ref": "#/definitions/os_deploy_DeploymentTriggerImageChangeParams", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentTriggerImageChangeParams" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10429,23 +9025,18 @@ }, "os_deploy_ExecNewPodHook": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "containerName": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10454,11 +9045,9 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10470,19 +9059,16 @@ }, "os_deploy_LifecycleHook": { "type": "object", - "description": "", "properties": { "execNewPod": { "$ref": "#/definitions/os_deploy_ExecNewPodHook", "existingJavaType": "io.fabric8.openshift.api.model.ExecNewPodHook" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tagImages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_deploy_TagImageHook", @@ -10498,7 +9084,6 @@ }, "os_deploy_RecreateDeploymentStrategyParams": { "type": "object", - "description": "", "properties": { "mid": { "$ref": "#/definitions/os_deploy_LifecycleHook", @@ -10514,7 +9099,6 @@ }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -10526,11 +9110,9 @@ }, "os_deploy_RollingDeploymentStrategyParams": { "type": "object", - "description": "", "properties": { "intervalSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxSurge": { @@ -10551,12 +9133,10 @@ }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -10568,11 +9148,9 @@ }, "os_deploy_TagImageHook": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "to": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10587,58 +9165,47 @@ }, "os_image_Image": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "dockerImageConfig": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageLayers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageLayer", "existingJavaType": "io.fabric8.openshift.api.model.ImageLayer" } }, "dockerImageManifest": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageManifestMediaType": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageMetadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_ImageRawExtension", "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension" }, "dockerImageMetadataVersion": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageSignatures": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "Image", "required": true }, @@ -10648,7 +9215,6 @@ }, "signatures": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageSignature", @@ -10665,7 +9231,6 @@ }, "os_image_ImageImportSpec": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10676,8 +9241,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "includeManifest": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -10696,7 +9260,6 @@ }, "os_image_ImageImportStatus": { "type": "object", - "description": "", "properties": { "image": { "$ref": "#/definitions/os_image_Image", @@ -10707,8 +9270,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Status" }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10719,19 +9281,15 @@ }, "os_image_ImageLayer": { "type": "object", - "description": "", "properties": { "mediaType": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "size": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -10743,17 +9301,14 @@ }, "os_image_ImageList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_Image", "existingJavaType": "io.fabric8.openshift.api.model.Image" @@ -10761,7 +9316,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageList", "required": true }, @@ -10779,11 +9333,9 @@ }, "os_image_ImageLookupPolicy": { "type": "object", - "description": "", "properties": { "local": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -10794,17 +9346,14 @@ }, "os_image_ImageSignature": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_SignatureCondition", @@ -10812,16 +9361,14 @@ } }, "content": { - "type": "string", - "description": "" + "type": "string" }, "created": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "imageIdentity": { - "type": "string", - "description": "" + "type": "string" }, "issuedBy": { "$ref": "#/definitions/os_image_SignatureIssuer", @@ -10833,7 +9380,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageSignature", "required": true }, @@ -10843,16 +9389,13 @@ }, "signedClaims": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10864,17 +9407,14 @@ }, "os_image_ImageStream": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageStream", "required": true }, @@ -10900,11 +9440,9 @@ }, "os_image_ImageStreamImage": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -10914,7 +9452,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamImage", "required": true }, @@ -10932,17 +9469,14 @@ }, "os_image_ImageStreamImport": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageStreamImport", "required": true }, @@ -10968,11 +9502,9 @@ }, "os_image_ImageStreamImportSpec": { "type": "object", - "description": "", "properties": { "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportSpec", @@ -10980,8 +9512,7 @@ } }, "import": { - "type": "boolean", - "description": "" + "type": "boolean" }, "repository": { "$ref": "#/definitions/os_image_RepositoryImportSpec", @@ -10996,11 +9527,9 @@ }, "os_image_ImageStreamImportStatus": { "type": "object", - "description": "", "properties": { "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportStatus", @@ -11024,17 +9553,14 @@ }, "os_image_ImageStreamList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageStream", "existingJavaType": "io.fabric8.openshift.api.model.ImageStream" @@ -11042,7 +9568,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamList", "required": true }, @@ -11060,11 +9585,9 @@ }, "os_image_ImageStreamMapping": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -11074,7 +9597,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamMapping", "required": true }, @@ -11083,8 +9605,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11096,11 +9617,9 @@ }, "os_image_ImageStreamSpec": { "type": "object", - "description": "", "properties": { "dockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "lookupPolicy": { "$ref": "#/definitions/os_image_ImageLookupPolicy", @@ -11108,7 +9627,6 @@ }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagReference", @@ -11124,19 +9642,15 @@ }, "os_image_ImageStreamStatus": { "type": "object", - "description": "", "properties": { "dockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "publicDockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_NamedTagEventList", @@ -11152,17 +9666,14 @@ }, "os_image_ImageStreamTag": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagEventCondition", @@ -11171,7 +9682,6 @@ }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "image": { @@ -11180,7 +9690,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamTag", "required": true }, @@ -11206,17 +9715,14 @@ }, "os_image_ImageStreamTagList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageStreamTag", "existingJavaType": "io.fabric8.openshift.api.model.ImageStreamTag" @@ -11224,7 +9730,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamTagList", "required": true }, @@ -11242,11 +9747,9 @@ }, "os_image_ImageTag": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -11256,7 +9759,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageTag", "required": true }, @@ -11282,17 +9784,14 @@ }, "os_image_ImageTagList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageTag", "existingJavaType": "io.fabric8.openshift.api.model.ImageTag" @@ -11300,7 +9799,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageTagList", "required": true }, @@ -11318,11 +9816,9 @@ }, "os_image_NamedTagEventList": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagEventCondition", @@ -11331,15 +9827,13 @@ }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_TagEvent", "existingJavaType": "io.fabric8.openshift.api.model.TagEvent" } }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11350,7 +9844,6 @@ }, "os_image_RepositoryImportSpec": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -11361,8 +9854,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "includeManifest": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -11377,20 +9869,16 @@ }, "os_image_RepositoryImportStatus": { "type": "object", - "description": "", "properties": { "additionalTags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportStatus", @@ -11410,7 +9898,6 @@ }, "os_image_SignatureCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -11421,20 +9908,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11445,15 +9928,12 @@ }, "os_image_SignatureGenericEntity": { "type": "object", - "description": "", "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11464,15 +9944,12 @@ }, "os_image_SignatureIssuer": { "type": "object", - "description": "", "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11483,19 +9960,15 @@ }, "os_image_SignatureSubject": { "type": "object", - "description": "", "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" }, "publicKeyID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11506,24 +9979,20 @@ }, "os_image_TagEvent": { "type": "object", - "description": "", "properties": { "created": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "dockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "image": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11534,11 +10003,9 @@ }, "os_image_TagEventCondition": { "type": "object", - "description": "", "properties": { "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "lastTransitionTime": { @@ -11546,20 +10013,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11570,15 +10033,12 @@ }, "os_image_TagImportPolicy": { "type": "object", - "description": "", "properties": { "insecure": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scheduled": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -11589,14 +10049,11 @@ }, "os_image_TagReference": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -11606,7 +10063,6 @@ }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "importPolicy": { @@ -11614,12 +10070,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "reference": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -11634,11 +10088,9 @@ }, "os_image_TagReferencePolicy": { "type": "object", - "description": "", "properties": { "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11649,29 +10101,24 @@ }, "os_network_ClusterNetwork": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "clusterNetworks": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.ClusterNetworkEntry" } }, "hostsubnetlength": { - "type": "integer", - "description": "" + "type": "integer" }, "kind": { "type": "string", - "description": "", "default": "ClusterNetwork", "required": true }, @@ -11680,24 +10127,19 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" }, "network": { - "type": "string", - "description": "" + "type": "string" }, "pluginName": { - "type": "string", - "description": "" + "type": "string" }, "serviceNetwork": { - "type": "string", - "description": "" + "type": "string" }, "vxlanPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -11708,15 +10150,12 @@ }, "os_network_ClusterNetworkEntry": { "type": "object", - "description": "", "properties": { "CIDR": { - "type": "string", - "description": "" + "type": "string" }, "hostSubnetLength": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -11727,17 +10166,14 @@ }, "os_network_ClusterNetworkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_ClusterNetwork", "existingJavaType": "io.fabric8.openshift.api.model.ClusterNetwork" @@ -11745,7 +10181,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterNetworkList", "required": true }, @@ -11763,17 +10198,14 @@ }, "os_network_EgressNetworkPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EgressNetworkPolicy", "required": true }, @@ -11795,17 +10227,14 @@ }, "os_network_EgressNetworkPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_EgressNetworkPolicy", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicy" @@ -11813,7 +10242,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EgressNetworkPolicyList", "required": true }, @@ -11831,15 +10259,12 @@ }, "os_network_EgressNetworkPolicyPeer": { "type": "object", - "description": "", "properties": { "cidrSelector": { - "type": "string", - "description": "" + "type": "string" }, "dnsName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11850,15 +10275,13 @@ }, "os_network_EgressNetworkPolicyRule": { "type": "object", - "description": "", "properties": { "to": { "$ref": "#/definitions/os_network_EgressNetworkPolicyPeer", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicyPeer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11869,11 +10292,9 @@ }, "os_network_EgressNetworkPolicySpec": { "type": "object", - "description": "", "properties": { "egress": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_EgressNetworkPolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicyRule" @@ -11888,26 +10309,21 @@ }, "os_network_NetNamespace": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "egressIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "NetNamespace", "required": true }, @@ -11916,12 +10332,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "netid": { - "type": "integer", - "description": "" + "type": "integer" }, "netname": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11932,17 +10346,14 @@ }, "os_network_NetNamespaceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_NetNamespace", "existingJavaType": "io.fabric8.openshift.api.model.NetNamespace" @@ -11950,7 +10361,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetNamespaceList", "required": true }, @@ -11968,26 +10378,20 @@ }, "os_oauth_ClusterRoleScopeRestriction": { "type": "object", - "description": "", "properties": { "allowEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "namespaces": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "roleNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -11999,34 +10403,27 @@ }, "os_oauth_OAuthAccessToken": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "authorizeToken": { - "type": "string", - "description": "" + "type": "string" }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "expiresIn": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "inactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "kind": { "type": "string", - "description": "", "default": "OAuthAccessToken", "required": true }, @@ -12035,29 +10432,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "redirectURI": { - "type": "string", - "description": "" + "type": "string" }, "refreshToken": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12069,17 +10460,14 @@ }, "os_oauth_OAuthAccessTokenList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthAccessToken", "existingJavaType": "io.fabric8.openshift.api.model.OAuthAccessToken" @@ -12087,7 +10475,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthAccessTokenList", "required": true }, @@ -12105,34 +10492,27 @@ }, "os_oauth_OAuthAuthorizeToken": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "codeChallenge": { - "type": "string", - "description": "" + "type": "string" }, "codeChallengeMethod": { - "type": "string", - "description": "" + "type": "string" }, "expiresIn": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "OAuthAuthorizeToken", "required": true }, @@ -12141,29 +10521,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "redirectURI": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "state": { - "type": "string", - "description": "" + "type": "string" }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12175,17 +10549,14 @@ }, "os_oauth_OAuthAuthorizeTokenList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthAuthorizeToken", "existingJavaType": "io.fabric8.openshift.api.model.OAuthAuthorizeToken" @@ -12193,7 +10564,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthAuthorizeTokenList", "required": true }, @@ -12211,38 +10581,30 @@ }, "os_oauth_OAuthClient": { "type": "object", - "description": "", "properties": { "accessTokenInactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "accessTokenMaxAgeSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "additionalSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "grantMethod": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "OAuthClient", "required": true }, @@ -12252,20 +10614,16 @@ }, "redirectURIs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "respondWithChallenges": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scopeRestrictions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_oauth_ScopeRestriction", @@ -12273,8 +10631,7 @@ } }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12286,21 +10643,17 @@ }, "os_oauth_OAuthClientAuthorization": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "OAuthClientAuthorization", "required": true }, @@ -12310,20 +10663,16 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12335,17 +10684,14 @@ }, "os_oauth_OAuthClientAuthorizationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthClientAuthorization", "existingJavaType": "io.fabric8.openshift.api.model.OAuthClientAuthorization" @@ -12353,7 +10699,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthClientAuthorizationList", "required": true }, @@ -12371,17 +10716,14 @@ }, "os_oauth_OAuthClientList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthClient", "existingJavaType": "io.fabric8.openshift.api.model.OAuthClient" @@ -12389,7 +10731,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthClientList", "required": true }, @@ -12407,7 +10748,6 @@ }, "os_oauth_ScopeRestriction": { "type": "object", - "description": "", "properties": { "clusterRole": { "$ref": "#/definitions/os_oauth_ClusterRoleScopeRestriction", @@ -12415,11 +10755,9 @@ }, "literals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12431,17 +10769,14 @@ }, "os_project_Project": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Project", "required": true }, @@ -12467,17 +10802,14 @@ }, "os_project_ProjectList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_project_Project", "existingJavaType": "io.fabric8.openshift.api.model.Project" @@ -12485,7 +10817,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ProjectList", "required": true }, @@ -12503,25 +10834,20 @@ }, "os_project_ProjectRequest": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ProjectRequest", "required": true }, @@ -12539,15 +10865,12 @@ }, "os_project_ProjectSpec": { "type": "object", - "description": "", "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12559,11 +10882,9 @@ }, "os_project_ProjectStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -12571,8 +10892,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12583,17 +10903,14 @@ }, "os_quota_AppliedClusterResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "AppliedClusterResourceQuota", "required": true }, @@ -12619,17 +10936,14 @@ }, "os_quota_AppliedClusterResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_AppliedClusterResourceQuota", "existingJavaType": "io.fabric8.openshift.api.model.AppliedClusterResourceQuota" @@ -12637,7 +10951,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AppliedClusterResourceQuotaList", "required": true }, @@ -12655,17 +10968,14 @@ }, "os_quota_ClusterResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterResourceQuota", "required": true }, @@ -12690,17 +11000,14 @@ }, "os_quota_ClusterResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_ClusterResourceQuota", "existingJavaType": "io.fabric8.openshift.api.model.ClusterResourceQuota" @@ -12708,7 +11015,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterResourceQuotaList", "required": true }, @@ -12726,14 +11032,11 @@ }, "os_quota_ClusterResourceQuotaSelector": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -12750,7 +11053,6 @@ }, "os_quota_ClusterResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "quota": { "$ref": "#/definitions/kubernetes_core_ResourceQuotaSpec", @@ -12769,11 +11071,9 @@ }, "os_quota_ClusterResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "namespaces": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_ResourceQuotaStatusByNamespace", "existingJavaType": "io.fabric8.openshift.api.model.ResourceQuotaStatusByNamespace" @@ -12792,11 +11092,9 @@ }, "os_quota_ResourceQuotaStatusByNamespace": { "type": "object", - "description": "", "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/kubernetes_core_ResourceQuotaStatus", @@ -12811,17 +11109,14 @@ }, "os_route_Route": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "route.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Route", "required": true }, @@ -12847,11 +11142,9 @@ }, "os_route_RouteIngress": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteIngressCondition", @@ -12859,20 +11152,16 @@ } }, "host": { - "type": "string", - "description": "" + "type": "string" }, "routerCanonicalHostname": { - "type": "string", - "description": "" + "type": "string" }, "routerName": { - "type": "string", - "description": "" + "type": "string" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12883,27 +11172,22 @@ }, "os_route_RouteIngressCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12914,17 +11198,14 @@ }, "os_route_RouteList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "route.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_route_Route", "existingJavaType": "io.fabric8.openshift.api.model.Route" @@ -12932,7 +11213,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RouteList", "required": true }, @@ -12950,7 +11230,6 @@ }, "os_route_RoutePort": { "type": "object", - "description": "", "properties": { "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -12965,11 +11244,9 @@ }, "os_route_RouteSpec": { "type": "object", - "description": "", "properties": { "alternateBackends": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteTargetReference", @@ -12977,20 +11254,17 @@ } }, "host": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/os_route_RoutePort", "existingJavaType": "io.fabric8.openshift.api.model.RoutePort" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "tls": { "$ref": "#/definitions/os_route_TLSConfig", @@ -13001,8 +11275,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RouteTargetReference" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13013,11 +11286,9 @@ }, "os_route_RouteStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteIngress", @@ -13033,19 +11304,15 @@ }, "os_route_RouteTargetReference": { "type": "object", - "description": "", "properties": { "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -13056,31 +11323,24 @@ }, "os_route_TLSConfig": { "type": "object", - "description": "", "properties": { "caCertificate": { - "type": "string", - "description": "" + "type": "string" }, "certificate": { - "type": "string", - "description": "" + "type": "string" }, "destinationCACertificate": { - "type": "string", - "description": "" + "type": "string" }, "insecureEdgeTerminationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "termination": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13091,11 +11351,9 @@ }, "os_security_AllowedFlexVolume": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13106,11 +11364,9 @@ }, "os_security_FSGroupStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_IDRange", @@ -13118,8 +11374,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13130,16 +11385,13 @@ }, "os_security_IDRange": { "type": "object", - "description": "", "properties": { "max": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "min": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -13151,17 +11403,14 @@ }, "os_security_PodSecurityPolicyReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicyReview", "required": true }, @@ -13182,15 +11431,12 @@ }, "os_security_PodSecurityPolicyReviewSpec": { "type": "object", - "description": "", "properties": { "serviceAccountNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "template": { @@ -13206,11 +11452,9 @@ }, "os_security_PodSecurityPolicyReviewStatus": { "type": "object", - "description": "", "properties": { "allowedServiceAccounts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_ServiceAccountPodSecurityPolicyReviewStatus", "existingJavaType": "io.fabric8.openshift.api.model.ServiceAccountPodSecurityPolicyReviewStatus" @@ -13225,17 +11469,14 @@ }, "os_security_PodSecurityPolicySelfSubjectReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicySelfSubjectReview", "required": true }, @@ -13256,7 +11497,6 @@ }, "os_security_PodSecurityPolicySelfSubjectReviewSpec": { "type": "object", - "description": "", "properties": { "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -13271,17 +11511,14 @@ }, "os_security_PodSecurityPolicySubjectReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicySubjectReview", "required": true }, @@ -13302,15 +11539,12 @@ }, "os_security_PodSecurityPolicySubjectReviewSpec": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "template": { @@ -13318,8 +11552,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13330,15 +11563,13 @@ }, "os_security_PodSecurityPolicySubjectReviewStatus": { "type": "object", - "description": "", "properties": { "allowedBy": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -13353,21 +11584,17 @@ }, "os_security_RangeAllocation": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "data": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "RangeAllocation", "required": true }, @@ -13376,8 +11603,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "range": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13388,17 +11614,14 @@ }, "os_security_RangeAllocationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_RangeAllocation", "existingJavaType": "io.fabric8.openshift.api.model.RangeAllocation" @@ -13406,7 +11629,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RangeAllocationList", "required": true }, @@ -13424,25 +11646,20 @@ }, "os_security_RunAsUserStrategyOptions": { "type": "object", - "description": "", "properties": { "type": { - "type": "string", - "description": "" + "type": "string" }, "uid": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "uidRangeMax": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "uidRangeMin": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -13454,15 +11671,13 @@ }, "os_security_SELinuxContextStrategyOptions": { "type": "object", - "description": "", "properties": { "seLinuxOptions": { "$ref": "#/definitions/kubernetes_core_SELinuxOptions", "existingJavaType": "io.fabric8.kubernetes.api.model.SELinuxOptions" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13473,47 +11688,36 @@ }, "os_security_SecurityContextConstraints": { "type": "object", - "description": "", "properties": { "allowHostDirVolumePlugin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostPorts": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowPrivilegedContainer": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedFlexVolumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_AllowedFlexVolume", @@ -13522,38 +11726,30 @@ }, "allowedUnsafeSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "defaultAddCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAllowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forbiddenSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fsGroup": { @@ -13562,15 +11758,12 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "SecurityContextConstraints", "required": true }, @@ -13579,19 +11772,15 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requiredDropCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "runAsUser": { @@ -13604,11 +11793,9 @@ }, "seccompProfiles": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "supplementalGroups": { @@ -13617,18 +11804,14 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "volumes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -13641,17 +11824,14 @@ }, "os_security_SecurityContextConstraintsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_SecurityContextConstraints", "existingJavaType": "io.fabric8.openshift.api.model.SecurityContextConstraints" @@ -13659,7 +11839,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecurityContextConstraintsList", "required": true }, @@ -13677,19 +11856,16 @@ }, "os_security_ServiceAccountPodSecurityPolicyReviewStatus": { "type": "object", - "description": "", "properties": { "allowedBy": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -13704,11 +11880,9 @@ }, "os_security_SupplementalGroupsStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_IDRange", @@ -13716,8 +11890,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13728,35 +11901,27 @@ }, "os_template_Parameter": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "from": { - "type": "string", - "description": "" + "type": "string" }, "generate": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "required": { - "type": "boolean", - "description": "" + "type": "boolean" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13767,32 +11932,26 @@ }, "os_template_Template": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "template.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Template", "required": true }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -13800,7 +11959,6 @@ }, "objects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -13808,7 +11966,6 @@ }, "parameters": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_template_Parameter", @@ -13825,17 +11982,14 @@ }, "os_template_TemplateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "template.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_template_Template", "existingJavaType": "io.fabric8.openshift.api.model.Template" @@ -13843,7 +11997,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TemplateList", "required": true }, @@ -13861,17 +12014,14 @@ }, "os_user_Group": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Group", "required": true }, @@ -13881,10 +12031,8 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -13897,17 +12045,14 @@ }, "os_user_GroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_Group", "existingJavaType": "io.fabric8.openshift.api.model.Group" @@ -13915,7 +12060,6 @@ }, "kind": { "type": "string", - "description": "", "default": "GroupList", "required": true }, @@ -13933,26 +12077,21 @@ }, "os_user_Identity": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "extra": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "kind": { "type": "string", - "description": "", "default": "Identity", "required": true }, @@ -13961,12 +12100,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "providerName": { - "type": "string", - "description": "" + "type": "string" }, "providerUserName": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -13982,17 +12119,14 @@ }, "os_user_IdentityList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_Identity", "existingJavaType": "io.fabric8.openshift.api.model.Identity" @@ -14000,7 +12134,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IdentityList", "required": true }, @@ -14018,37 +12151,29 @@ }, "os_user_User": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "fullName": { - "type": "string", - "description": "" + "type": "string" }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "identities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "User", "required": true }, @@ -14066,17 +12191,14 @@ }, "os_user_UserList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_User", "existingJavaType": "io.fabric8.openshift.api.model.User" @@ -14084,7 +12206,6 @@ }, "kind": { "type": "string", - "description": "", "default": "UserList", "required": true }, diff --git a/kubernetes-model-generator/openshift-model/src/main/resources/schema/validation-schema.json b/kubernetes-model-generator/openshift-model/src/main/resources/schema/validation-schema.json index 0d7eb396a82..bb19aab91be 100644 --- a/kubernetes-model-generator/openshift-model/src/main/resources/schema/validation-schema.json +++ b/kubernetes-model-generator/openshift-model/src/main/resources/schema/validation-schema.json @@ -5,23 +5,19 @@ "definitions": { "kubernetes_apimachinery_APIGroup": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -29,7 +25,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -38,7 +33,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -53,17 +47,14 @@ }, "kubernetes_apimachinery_APIGroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -71,7 +62,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -84,30 +74,24 @@ }, "kubernetes_apimachinery_CreateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -120,45 +104,37 @@ }, "kubernetes_apimachinery_DeleteOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -169,11 +145,9 @@ }, "kubernetes_apimachinery_Duration": { "type": "object", - "description": "", "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -185,7 +159,6 @@ }, "kubernetes_apimachinery_FieldsV1": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1", "javaInterfaces": [ @@ -194,23 +167,19 @@ }, "kubernetes_apimachinery_GetOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -221,15 +190,12 @@ }, "kubernetes_apimachinery_GroupVersionForDiscovery": { "type": "object", - "description": "", "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -240,11 +206,9 @@ }, "kubernetes_apimachinery_LabelSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -253,10 +217,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -269,23 +231,18 @@ }, "kubernetes_apimachinery_LabelSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -297,17 +254,14 @@ }, "kubernetes_apimachinery_List": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -315,7 +269,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -333,24 +286,19 @@ }, "kubernetes_apimachinery_ListMeta": { "type": "object", - "description": "", "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -361,57 +309,45 @@ }, "kubernetes_apimachinery_ListOptions": { "type": "object", - "description": "", "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -422,27 +358,22 @@ }, "kubernetes_apimachinery_ManagedFieldsEntry": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -457,20 +388,16 @@ }, "kubernetes_apimachinery_ObjectMeta": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -478,7 +405,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -487,34 +413,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -522,18 +441,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -541,16 +457,13 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -561,31 +474,24 @@ }, "kubernetes_apimachinery_OwnerReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -596,7 +502,6 @@ }, "kubernetes_apimachinery_Patch": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.Patch", "javaInterfaces": [ @@ -605,34 +510,27 @@ }, "kubernetes_apimachinery_PatchOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -645,15 +543,12 @@ }, "kubernetes_apimachinery_Preconditions": { "type": "object", - "description": "", "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -664,14 +559,11 @@ }, "kubernetes_apimachinery_RootPaths": { "type": "object", - "description": "", "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -683,15 +575,12 @@ }, "kubernetes_apimachinery_ServerAddressByClientCIDR": { "type": "object", - "description": "", "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -702,17 +591,14 @@ }, "kubernetes_apimachinery_Status": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -720,25 +606,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -749,19 +631,15 @@ }, "kubernetes_apimachinery_StatusCause": { "type": "object", - "description": "", "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -772,11 +650,9 @@ }, "kubernetes_apimachinery_StatusDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -784,24 +660,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -812,11 +683,9 @@ }, "kubernetes_apimachinery_Time": { "type": "object", - "description": "", "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -827,15 +696,12 @@ }, "kubernetes_apimachinery_TypeMeta": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -846,30 +712,24 @@ }, "kubernetes_apimachinery_UpdateOptions": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -882,7 +742,6 @@ }, "kubernetes_apimachinery_pkg_runtime_ImageRawExtension": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.runtime.RawExtension", "javaInterfaces": [ @@ -891,7 +750,6 @@ }, "kubernetes_apimachinery_pkg_runtime_RawExtension": { "type": "object", - "description": "", "additionalProperties": true, "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata", "javaInterfaces": [ @@ -900,19 +758,15 @@ }, "kubernetes_apimachinery_pkg_util_intstr_IntOrString": { "type": "object", - "description": "", "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -924,43 +778,33 @@ }, "kubernetes_apimachinery_pkg_version_Info": { "type": "object", - "description": "", "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -971,17 +815,14 @@ }, "kubernetes_authentication_TokenReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authentication.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TokenReview", "required": true }, @@ -1006,20 +847,16 @@ }, "kubernetes_authentication_TokenReviewSpec": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "token": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1030,24 +867,19 @@ }, "kubernetes_authentication_TokenReviewStatus": { "type": "object", - "description": "", "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "authenticated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -1062,37 +894,29 @@ }, "kubernetes_authentication_UserInfo": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1103,30 +927,23 @@ }, "kubernetes_config_AuthInfo": { "type": "object", - "description": "", "properties": { "as": { - "type": "string", - "description": "" + "type": "string" }, "as-groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "as-user-extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -1136,20 +953,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.AuthProviderConfig" }, "client-certificate": { - "type": "string", - "description": "" + "type": "string" }, "client-certificate-data": { - "type": "string", - "description": "" + "type": "string" }, "client-key": { - "type": "string", - "description": "" + "type": "string" }, "client-key-data": { - "type": "string", - "description": "" + "type": "string" }, "exec": { "$ref": "#/definitions/kubernetes_config_ExecConfig", @@ -1157,7 +970,6 @@ }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1165,20 +977,16 @@ } }, "password": { - "type": "string", - "description": "" + "type": "string" }, "token": { - "type": "string", - "description": "" + "type": "string" }, "tokenFile": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1189,20 +997,16 @@ }, "kubernetes_config_AuthProviderConfig": { "type": "object", - "description": "", "properties": { "config": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1213,19 +1017,15 @@ }, "kubernetes_config_Cluster": { "type": "object", - "description": "", "properties": { "certificate-authority": { - "type": "string", - "description": "" + "type": "string" }, "certificate-authority-data": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1233,20 +1033,16 @@ } }, "insecure-skip-tls-verify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "proxy-url": { - "type": "string", - "description": "" + "type": "string" }, "server": { - "type": "string", - "description": "" + "type": "string" }, "tls-server-name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1257,15 +1053,12 @@ }, "kubernetes_config_Config": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "clusters": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedCluster", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedCluster" @@ -1273,19 +1066,16 @@ }, "contexts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedContext", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedContext" } }, "current-context": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1293,8 +1083,7 @@ } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "preferences": { "$ref": "#/definitions/kubernetes_config_Preferences", @@ -1302,7 +1091,6 @@ }, "users": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedAuthInfo", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedAuthInfo" @@ -1317,15 +1105,12 @@ }, "kubernetes_config_Context": { "type": "object", - "description": "", "properties": { "cluster": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1333,12 +1118,10 @@ } }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1349,35 +1132,28 @@ }, "kubernetes_config_ExecConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "args": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_ExecEnvVar", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecEnvVar" } }, "installHint": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1388,15 +1164,12 @@ }, "kubernetes_config_ExecEnvVar": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1407,11 +1180,9 @@ }, "kubernetes_config_NamedAuthInfo": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_config_AuthInfo", @@ -1426,15 +1197,13 @@ }, "kubernetes_config_NamedCluster": { "type": "object", - "description": "", "properties": { "cluster": { "$ref": "#/definitions/kubernetes_config_Cluster", "existingJavaType": "io.fabric8.kubernetes.api.model.Cluster" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1445,15 +1214,13 @@ }, "kubernetes_config_NamedContext": { "type": "object", - "description": "", "properties": { "context": { "$ref": "#/definitions/kubernetes_config_Context", "existingJavaType": "io.fabric8.kubernetes.api.model.Context" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1464,15 +1231,13 @@ }, "kubernetes_config_NamedExtension": { "type": "object", - "description": "", "properties": { "extension": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1483,15 +1248,12 @@ }, "kubernetes_config_Preferences": { "type": "object", - "description": "", "properties": { "colors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -1507,23 +1269,18 @@ }, "kubernetes_core_AWSElasticBlockStoreVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1534,7 +1291,6 @@ }, "kubernetes_core_Affinity": { "type": "object", - "description": "", "properties": { "nodeAffinity": { "$ref": "#/definitions/kubernetes_core_NodeAffinity", @@ -1557,31 +1313,24 @@ }, "kubernetes_core_AzureDiskVolumeSource": { "type": "object", - "description": "", "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1592,19 +1341,15 @@ }, "kubernetes_core_AzureFileVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1615,30 +1360,24 @@ }, "kubernetes_core_CSIVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -1651,24 +1390,19 @@ }, "kubernetes_core_Capabilities": { "type": "object", - "description": "", "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1680,35 +1414,28 @@ }, "kubernetes_core_CephFSVolumeSource": { "type": "object", - "description": "", "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1719,23 +1446,19 @@ }, "kubernetes_core_CinderVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1746,15 +1469,12 @@ }, "kubernetes_core_ConfigMapEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1765,19 +1485,15 @@ }, "kubernetes_core_ConfigMapKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1788,11 +1504,9 @@ }, "kubernetes_core_ConfigMapProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1800,12 +1514,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1816,15 +1528,12 @@ }, "kubernetes_core_ConfigMapVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -1832,12 +1541,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -1848,29 +1555,23 @@ }, "kubernetes_core_Container": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -1879,7 +1580,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -1887,12 +1587,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -1904,13 +1602,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -1934,28 +1630,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -1964,7 +1654,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -1972,8 +1661,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -1984,29 +1672,23 @@ }, "kubernetes_core_ContainerPort": { "type": "object", - "description": "", "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2017,11 +1699,9 @@ }, "kubernetes_core_DownwardAPIProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2037,19 +1717,16 @@ }, "kubernetes_core_DownwardAPIVolumeFile": { "type": "object", - "description": "", "properties": { "fieldRef": { "$ref": "#/definitions/kubernetes_core_ObjectFieldSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -2064,15 +1741,12 @@ }, "kubernetes_core_DownwardAPIVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -2088,11 +1762,9 @@ }, "kubernetes_core_EmptyDirVolumeSource": { "type": "object", - "description": "", "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -2107,15 +1779,13 @@ }, "kubernetes_core_EnvFromSource": { "type": "object", - "description": "", "properties": { "configMapRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapEnvSource", "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -2130,16 +1800,13 @@ }, "kubernetes_core_EnvVar": { "type": "object", - "description": "", "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -2154,7 +1821,6 @@ }, "kubernetes_core_EnvVarSource": { "type": "object", - "description": "", "properties": { "configMapKeyRef": { "$ref": "#/definitions/kubernetes_core_ConfigMapKeySelector", @@ -2181,29 +1847,23 @@ }, "kubernetes_core_EphemeralContainer": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2212,7 +1872,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2220,12 +1879,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2236,12 +1893,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2265,32 +1920,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2299,7 +1947,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2307,8 +1954,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2319,29 +1965,23 @@ }, "kubernetes_core_EphemeralContainerCommon": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -2350,7 +1990,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -2358,12 +1997,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -2374,12 +2011,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -2403,28 +2038,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -2433,7 +2062,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -2441,8 +2069,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2453,11 +2080,9 @@ }, "kubernetes_core_EphemeralVolumeSource": { "type": "object", - "description": "", "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -2472,15 +2097,12 @@ }, "kubernetes_core_ExecAction": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2492,36 +2114,28 @@ }, "kubernetes_core_FCVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2533,28 +2147,22 @@ }, "kubernetes_core_FlexVolumeSource": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -2569,15 +2177,12 @@ }, "kubernetes_core_FlockerVolumeSource": { "type": "object", - "description": "", "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2588,23 +2193,18 @@ }, "kubernetes_core_GCEPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2615,19 +2215,15 @@ }, "kubernetes_core_GitRepoVolumeSource": { "type": "object", - "description": "", "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2638,19 +2234,15 @@ }, "kubernetes_core_GlusterfsVolumeSource": { "type": "object", - "description": "", "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -2661,15 +2253,12 @@ }, "kubernetes_core_HTTPGetAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -2677,16 +2266,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2697,15 +2284,12 @@ }, "kubernetes_core_HTTPHeader": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2716,7 +2300,6 @@ }, "kubernetes_core_Handler": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", @@ -2739,20 +2322,16 @@ }, "kubernetes_core_HostAlias": { "type": "object", - "description": "", "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2763,15 +2342,12 @@ }, "kubernetes_core_HostPathVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2782,56 +2358,44 @@ }, "kubernetes_core_ISCSIVolumeSource": { "type": "object", - "description": "", "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2842,19 +2406,15 @@ }, "kubernetes_core_KeyToPath": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2865,7 +2425,6 @@ }, "kubernetes_core_Lifecycle": { "type": "object", - "description": "", "properties": { "postStart": { "$ref": "#/definitions/kubernetes_core_Handler", @@ -2884,11 +2443,9 @@ }, "kubernetes_core_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2899,19 +2456,15 @@ }, "kubernetes_core_NFSVolumeSource": { "type": "object", - "description": "", "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2922,27 +2475,22 @@ }, "kubernetes_core_NamespaceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -2953,11 +2501,9 @@ }, "kubernetes_core_NodeAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -2977,11 +2523,9 @@ }, "kubernetes_core_NodeSelector": { "type": "object", - "description": "", "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -2996,23 +2540,18 @@ }, "kubernetes_core_NodeSelectorRequirement": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3024,11 +2563,9 @@ }, "kubernetes_core_NodeSelectorTerm": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -3037,7 +2574,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -3053,15 +2589,12 @@ }, "kubernetes_core_ObjectFieldSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3072,35 +2605,27 @@ }, "kubernetes_core_ObjectReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3111,15 +2636,12 @@ }, "kubernetes_core_PersistentVolumeClaimSpec": { "type": "object", - "description": "", "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -3135,16 +2657,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3155,7 +2674,6 @@ }, "kubernetes_core_PersistentVolumeClaimTemplate": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3174,15 +2692,12 @@ }, "kubernetes_core_PersistentVolumeClaimVolumeSource": { "type": "object", - "description": "", "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -3193,15 +2708,12 @@ }, "kubernetes_core_PhotonPersistentDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3212,11 +2724,9 @@ }, "kubernetes_core_PodAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3225,7 +2735,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3241,7 +2750,6 @@ }, "kubernetes_core_PodAffinityTerm": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -3249,16 +2757,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3269,11 +2774,9 @@ }, "kubernetes_core_PodAntiAffinity": { "type": "object", - "description": "", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -3282,7 +2785,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -3298,20 +2800,16 @@ }, "kubernetes_core_PodDNSConfig": { "type": "object", - "description": "", "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -3320,11 +2818,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3336,15 +2832,12 @@ }, "kubernetes_core_PodDNSConfigOption": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3355,11 +2848,9 @@ }, "kubernetes_core_PodReadinessGate": { "type": "object", - "description": "", "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3370,29 +2861,23 @@ }, "kubernetes_core_PodSecurityContext": { "type": "object", - "description": "", "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -3405,17 +2890,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -3435,11 +2917,9 @@ }, "kubernetes_core_PodSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -3447,12 +2927,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -3463,16 +2941,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -3481,7 +2956,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -3489,24 +2963,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -3515,7 +2984,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -3523,21 +2991,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3545,20 +3009,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -3566,49 +3026,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -3617,7 +3067,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -3626,7 +3075,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -3642,7 +3090,6 @@ }, "kubernetes_core_PodTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -3661,19 +3108,15 @@ }, "kubernetes_core_PortworxVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3684,15 +3127,13 @@ }, "kubernetes_core_PreferredSchedulingTerm": { "type": "object", - "description": "", "properties": { "preference": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3703,39 +3144,33 @@ }, "kubernetes_core_Probe": { "type": "object", - "description": "", "properties": { "exec": { "$ref": "#/definitions/kubernetes_core_ExecAction", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -3746,15 +3181,12 @@ }, "kubernetes_core_ProjectedVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -3769,31 +3201,24 @@ }, "kubernetes_core_QuobyteVolumeSource": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3804,43 +3229,34 @@ }, "kubernetes_core_RBDVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3851,19 +3267,16 @@ }, "kubernetes_core_ResourceFieldSelector": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3874,11 +3287,9 @@ }, "kubernetes_core_ResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3891,11 +3302,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -3907,11 +3316,9 @@ }, "kubernetes_core_ResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3920,7 +3327,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3936,11 +3342,9 @@ }, "kubernetes_core_ResourceRequirements": { "type": "object", - "description": "", "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3949,7 +3353,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -3965,23 +3368,18 @@ }, "kubernetes_core_SELinuxOptions": { "type": "object", - "description": "", "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -3992,47 +3390,37 @@ }, "kubernetes_core_ScaleIOVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4043,11 +3431,9 @@ }, "kubernetes_core_ScopeSelector": { "type": "object", - "description": "", "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -4063,23 +3449,18 @@ }, "kubernetes_core_ScopedResourceSelectorRequirement": { "type": "object", - "description": "", "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -4091,15 +3472,12 @@ }, "kubernetes_core_SeccompProfile": { "type": "object", - "description": "", "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4110,15 +3488,12 @@ }, "kubernetes_core_SecretEnvSource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4129,19 +3504,15 @@ }, "kubernetes_core_SecretKeySelector": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4152,11 +3523,9 @@ }, "kubernetes_core_SecretProjection": { "type": "object", - "description": "", "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4164,12 +3533,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -4180,15 +3547,12 @@ }, "kubernetes_core_SecretVolumeSource": { "type": "object", - "description": "", "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -4196,12 +3560,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4212,40 +3574,32 @@ }, "kubernetes_core_SecurityContext": { "type": "object", - "description": "", "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -4269,20 +3623,16 @@ }, "kubernetes_core_ServiceAccountTokenProjection": { "type": "object", - "description": "", "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4293,27 +3643,22 @@ }, "kubernetes_core_StorageOSVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4324,15 +3669,12 @@ }, "kubernetes_core_Sysctl": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4343,11 +3685,9 @@ }, "kubernetes_core_TCPSocketAction": { "type": "object", - "description": "", "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -4362,28 +3702,22 @@ }, "kubernetes_core_Toleration": { "type": "object", - "description": "", "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4394,23 +3728,19 @@ }, "kubernetes_core_TopologySpreadConstraint": { "type": "object", - "description": "", "properties": { "labelSelector": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4421,19 +3751,15 @@ }, "kubernetes_core_TypedLocalObjectReference": { "type": "object", - "description": "", "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4444,7 +3770,6 @@ }, "kubernetes_core_Volume": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4520,7 +3845,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -4577,15 +3901,12 @@ }, "kubernetes_core_VolumeDevice": { "type": "object", - "description": "", "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4596,31 +3917,24 @@ }, "kubernetes_core_VolumeMount": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4631,7 +3945,6 @@ }, "kubernetes_core_VolumeProjection": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_ConfigMapProjection", @@ -4658,7 +3971,6 @@ }, "kubernetes_core_VolumeSource": { "type": "object", - "description": "", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/kubernetes_core_AWSElasticBlockStoreVolumeSource", @@ -4785,23 +4097,18 @@ }, "kubernetes_core_VsphereVirtualDiskVolumeSource": { "type": "object", - "description": "", "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4812,15 +4119,13 @@ }, "kubernetes_core_WeightedPodAffinityTerm": { "type": "object", - "description": "", "properties": { "podAffinityTerm": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -4831,19 +4136,15 @@ }, "kubernetes_core_WindowsSecurityContextOptions": { "type": "object", - "description": "", "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4854,11 +4155,9 @@ }, "kubernetes_rbac_AggregationRule": { "type": "object", - "description": "", "properties": { "clusterRoleSelectors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -4874,11 +4173,9 @@ }, "kubernetes_resource_Quantity": { "type": "object", - "description": "", "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4889,43 +4186,34 @@ }, "os_authorization_Action": { "type": "object", - "description": "", "properties": { "content": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -4936,7 +4224,6 @@ }, "os_authorization_ClusterRole": { "type": "object", - "description": "", "properties": { "aggregationRule": { "$ref": "#/definitions/kubernetes_rbac_AggregationRule", @@ -4944,13 +4231,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRole", "required": true }, @@ -4960,7 +4245,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -4975,25 +4259,20 @@ }, "os_authorization_ClusterRoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "groupNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBinding", "required": true }, @@ -5007,7 +4286,6 @@ }, "subjects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -5015,10 +4293,8 @@ }, "userNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5030,17 +4306,14 @@ }, "os_authorization_ClusterRoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ClusterRoleBinding", "existingJavaType": "io.fabric8.openshift.api.model.ClusterRoleBinding" @@ -5048,7 +4321,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBindingList", "required": true }, @@ -5066,17 +4338,14 @@ }, "os_authorization_ClusterRoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ClusterRole", "existingJavaType": "io.fabric8.openshift.api.model.ClusterRole" @@ -5084,7 +4353,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleList", "required": true }, @@ -5102,19 +4370,15 @@ }, "os_authorization_GroupRestriction": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -5129,11 +4393,9 @@ }, "os_authorization_LocalResourceAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5142,42 +4404,33 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "LocalResourceAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5188,11 +4441,9 @@ }, "os_authorization_LocalSubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5202,61 +4453,47 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5267,15 +4504,12 @@ }, "os_authorization_PolicyRule": { "type": "object", - "description": "", "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "attributeRestrictions": { @@ -5284,36 +4518,28 @@ }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5325,11 +4551,9 @@ }, "os_authorization_ResourceAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5338,42 +4562,33 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ResourceAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5384,17 +4599,14 @@ }, "os_authorization_Role": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Role", "required": true }, @@ -5404,7 +4616,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -5420,25 +4631,20 @@ }, "os_authorization_RoleBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "groupNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "RoleBinding", "required": true }, @@ -5452,7 +4658,6 @@ }, "subjects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -5460,10 +4665,8 @@ }, "userNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5476,17 +4679,14 @@ }, "os_authorization_RoleBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_RoleBinding", "existingJavaType": "io.fabric8.openshift.api.model.RoleBinding" @@ -5494,7 +4694,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleBindingList", "required": true }, @@ -5512,17 +4711,14 @@ }, "os_authorization_RoleBindingRestriction": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RoleBindingRestriction", "required": true }, @@ -5544,7 +4740,6 @@ }, "os_authorization_RoleBindingRestrictionSpec": { "type": "object", - "description": "", "properties": { "grouprestriction": { "$ref": "#/definitions/os_authorization_GroupRestriction", @@ -5567,17 +4762,14 @@ }, "os_authorization_RoleList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_Role", "existingJavaType": "io.fabric8.openshift.api.model.Role" @@ -5585,7 +4777,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleList", "required": true }, @@ -5603,17 +4794,14 @@ }, "os_authorization_SelfSubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -5634,14 +4822,11 @@ }, "os_authorization_SelfSubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5653,15 +4838,12 @@ }, "os_authorization_ServiceAccountReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5672,19 +4854,15 @@ }, "os_authorization_ServiceAccountRestriction": { "type": "object", - "description": "", "properties": { "namespaces": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "serviceaccounts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ServiceAccountReference", "existingJavaType": "io.fabric8.openshift.api.model.ServiceAccountReference" @@ -5699,11 +4877,9 @@ }, "os_authorization_SubjectAccessReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -5713,61 +4889,47 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5778,35 +4940,28 @@ }, "os_authorization_SubjectAccessReviewResponse": { "type": "object", - "description": "", "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReviewResponse", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5817,17 +4972,14 @@ }, "os_authorization_SubjectRulesReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectRulesReview", "required": true }, @@ -5848,27 +5000,21 @@ }, "os_authorization_SubjectRulesReviewSpec": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5879,15 +5025,12 @@ }, "os_authorization_SubjectRulesReviewStatus": { "type": "object", - "description": "", "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -5902,19 +5045,15 @@ }, "os_authorization_UserRestriction": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -5922,10 +5061,8 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -5937,11 +5074,9 @@ }, "os_build_BinaryBuildSource": { "type": "object", - "description": "", "properties": { "asFile": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5952,15 +5087,13 @@ }, "os_build_BitbucketWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -5971,17 +5104,14 @@ }, "os_build_Build": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Build", "required": true }, @@ -6007,7 +5137,6 @@ }, "os_build_BuildCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6018,20 +5147,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6042,17 +5167,14 @@ }, "os_build_BuildConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "BuildConfig", "required": true }, @@ -6078,17 +5200,14 @@ }, "os_build_BuildConfigList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_build_BuildConfig", "existingJavaType": "io.fabric8.openshift.api.model.BuildConfig" @@ -6096,7 +5215,6 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildConfigList", "required": true }, @@ -6114,23 +5232,18 @@ }, "os_build_BuildConfigSpec": { "type": "object", - "description": "", "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "failedBuildsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6151,12 +5264,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "runPolicy": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -6167,12 +5278,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.BuildStrategy" }, "successfulBuildsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "triggers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerPolicy", @@ -6188,11 +5297,9 @@ }, "os_build_BuildConfigStatus": { "type": "object", - "description": "", "properties": { "lastVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -6204,17 +5311,14 @@ }, "os_build_BuildList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_build_Build", "existingJavaType": "io.fabric8.openshift.api.model.Build" @@ -6222,7 +5326,6 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildList", "required": true }, @@ -6240,11 +5343,9 @@ }, "os_build_BuildOutput": { "type": "object", - "description": "", "properties": { "imageLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageLabel", @@ -6268,29 +5369,23 @@ }, "os_build_BuildPostCommitSpec": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "script": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6301,11 +5396,9 @@ }, "os_build_BuildRequest": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, @@ -6319,7 +5412,6 @@ }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6332,13 +5424,11 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildRequest", "required": true }, "lastVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "metadata": { @@ -6355,7 +5445,6 @@ }, "triggeredBy": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerCause", @@ -6376,7 +5465,6 @@ }, "os_build_BuildSource": { "type": "object", - "description": "", "properties": { "binary": { "$ref": "#/definitions/os_build_BinaryBuildSource", @@ -6384,7 +5472,6 @@ }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ConfigMapBuildSource", @@ -6392,12 +5479,10 @@ } }, "contextDir": { - "type": "string", - "description": "" + "type": "string" }, "dockerfile": { - "type": "string", - "description": "" + "type": "string" }, "git": { "$ref": "#/definitions/os_build_GitBuildSource", @@ -6405,7 +5490,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageSource", @@ -6414,7 +5498,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_SecretBuildSource", @@ -6426,8 +5509,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6438,19 +5520,15 @@ }, "os_build_BuildSpec": { "type": "object", - "description": "", "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6471,8 +5549,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -6484,7 +5561,6 @@ }, "triggeredBy": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerCause", @@ -6500,11 +5576,9 @@ }, "os_build_BuildStatus": { "type": "object", - "description": "", "properties": { "cancelled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "completionTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -6512,7 +5586,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildCondition", @@ -6525,36 +5598,29 @@ }, "duration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "logSnippet": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "output": { "$ref": "#/definitions/os_build_BuildStatusOutput", "existingJavaType": "io.fabric8.openshift.api.model.BuildStatusOutput" }, "outputDockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "stages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_StageInfo", @@ -6574,7 +5640,6 @@ }, "os_build_BuildStatusOutput": { "type": "object", - "description": "", "properties": { "to": { "$ref": "#/definitions/os_build_BuildStatusOutputTo", @@ -6589,11 +5654,9 @@ }, "os_build_BuildStatusOutputTo": { "type": "object", - "description": "", "properties": { "imageDigest": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6604,7 +5667,6 @@ }, "os_build_BuildStrategy": { "type": "object", - "description": "", "properties": { "customStrategy": { "$ref": "#/definitions/os_build_CustomBuildStrategy", @@ -6623,8 +5685,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceBuildStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6635,7 +5696,6 @@ }, "os_build_BuildTriggerCause": { "type": "object", - "description": "", "properties": { "bitbucketWebHook": { "$ref": "#/definitions/os_build_BitbucketWebHookCause", @@ -6658,8 +5718,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.ImageChangeCause" }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6670,7 +5729,6 @@ }, "os_build_BuildTriggerPolicy": { "type": "object", - "description": "", "properties": { "bitbucket": { "$ref": "#/definitions/os_build_WebHookTrigger", @@ -6693,8 +5751,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.ImageChangeTrigger" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6705,19 +5762,15 @@ }, "os_build_CommonSpec": { "type": "object", - "description": "", "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -6738,8 +5791,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -6758,15 +5810,13 @@ }, "os_build_CommonWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6777,15 +5827,13 @@ }, "os_build_ConfigMapBuildSource": { "type": "object", - "description": "", "properties": { "configMap": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "destinationDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6796,15 +5844,12 @@ }, "os_build_CustomBuildStrategy": { "type": "object", - "description": "", "properties": { "buildAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6812,12 +5857,10 @@ } }, "exposeDockerSocket": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -6829,7 +5872,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_SecretSpec", @@ -6845,11 +5887,9 @@ }, "os_build_DockerBuildStrategy": { "type": "object", - "description": "", "properties": { "buildArgs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6857,12 +5897,10 @@ } }, "dockerfilePath": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6870,20 +5908,17 @@ } }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "imageOptimizationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "noCache": { - "type": "boolean", - "description": "" + "type": "boolean" }, "pullSecret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -6898,11 +5933,9 @@ }, "os_build_DockerStrategyOptions": { "type": "object", - "description": "", "properties": { "buildArgs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -6910,8 +5943,7 @@ } }, "noCache": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -6922,15 +5954,13 @@ }, "os_build_GenericWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6941,27 +5971,21 @@ }, "os_build_GitBuildSource": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" }, "ref": { - "type": "string", - "description": "" + "type": "string" }, "uri": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6972,15 +5996,13 @@ }, "os_build_GitHubWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -6991,15 +6013,13 @@ }, "os_build_GitLabWebHookCause": { "type": "object", - "description": "", "properties": { "revision": { "$ref": "#/definitions/os_build_SourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7010,23 +6030,20 @@ }, "os_build_GitSourceRevision": { "type": "object", - "description": "", "properties": { "author": { "$ref": "#/definitions/os_build_SourceControlUser", "existingJavaType": "io.fabric8.openshift.api.model.SourceControlUser" }, "commit": { - "type": "string", - "description": "" + "type": "string" }, "committer": { "$ref": "#/definitions/os_build_SourceControlUser", "existingJavaType": "io.fabric8.openshift.api.model.SourceControlUser" }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7037,15 +6054,13 @@ }, "os_build_ImageChangeCause": { "type": "object", - "description": "", "properties": { "fromRef": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "imageID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7056,19 +6071,16 @@ }, "os_build_ImageChangeTrigger": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "lastTriggeredImageID": { - "type": "string", - "description": "" + "type": "string" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7079,15 +6091,12 @@ }, "os_build_ImageLabel": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7098,15 +6107,12 @@ }, "os_build_ImageSource": { "type": "object", - "description": "", "properties": { "as": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "from": { @@ -7115,7 +6121,6 @@ }, "paths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageSourcePath", @@ -7135,15 +6140,12 @@ }, "os_build_ImageSourcePath": { "type": "object", - "description": "", "properties": { "destinationDir": { - "type": "string", - "description": "" + "type": "string" }, "sourcePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7154,11 +6156,9 @@ }, "os_build_JenkinsPipelineBuildStrategy": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -7166,12 +6166,10 @@ } }, "jenkinsfile": { - "type": "string", - "description": "" + "type": "string" }, "jenkinsfilePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7182,19 +6180,15 @@ }, "os_build_ProxyConfig": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7205,11 +6199,9 @@ }, "os_build_SecretBuildSource": { "type": "object", - "description": "", "properties": { "destinationDir": { - "type": "string", - "description": "" + "type": "string" }, "secret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7224,11 +6216,9 @@ }, "os_build_SecretLocalReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7239,11 +6229,9 @@ }, "os_build_SecretSpec": { "type": "object", - "description": "", "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "secretSource": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -7258,11 +6246,9 @@ }, "os_build_SourceBuildStrategy": { "type": "object", - "description": "", "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -7270,24 +6256,21 @@ } }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "incremental": { - "type": "boolean", - "description": "" + "type": "boolean" }, "pullSecret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "scripts": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7298,15 +6281,12 @@ }, "os_build_SourceControlUser": { "type": "object", - "description": "", "properties": { "email": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7317,15 +6297,13 @@ }, "os_build_SourceRevision": { "type": "object", - "description": "", "properties": { "git": { "$ref": "#/definitions/os_build_GitSourceRevision", "existingJavaType": "io.fabric8.openshift.api.model.GitSourceRevision" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7336,11 +6314,9 @@ }, "os_build_SourceStrategyOptions": { "type": "object", - "description": "", "properties": { "incremental": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -7351,16 +6327,13 @@ }, "os_build_StageInfo": { "type": "object", - "description": "", "properties": { "durationMilliseconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7368,7 +6341,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_StepInfo", @@ -7384,16 +6356,13 @@ }, "os_build_StepInfo": { "type": "object", - "description": "", "properties": { "durationMilliseconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -7408,15 +6377,12 @@ }, "os_build_WebHookTrigger": { "type": "object", - "description": "", "properties": { "allowEnv": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secret": { - "type": "string", - "description": "" + "type": "string" }, "secretReference": { "$ref": "#/definitions/os_build_SecretLocalReference", @@ -7431,17 +6397,14 @@ }, "os_config_APIServer": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIServer", "required": true }, @@ -7466,11 +6429,9 @@ }, "os_config_APIServerEncryption": { "type": "object", - "description": "", "properties": { "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7481,17 +6442,14 @@ }, "os_config_APIServerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_APIServer", "existingJavaType": "io.fabric8.openshift.api.model.APIServer" @@ -7499,7 +6457,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIServerList", "required": true }, @@ -7517,15 +6474,12 @@ }, "os_config_APIServerNamedServingCert": { "type": "object", - "description": "", "properties": { "names": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "servingCertificate": { @@ -7541,11 +6495,9 @@ }, "os_config_APIServerServingCerts": { "type": "object", - "description": "", "properties": { "namedCertificates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_APIServerNamedServingCert", @@ -7561,15 +6513,12 @@ }, "os_config_APIServerSpec": { "type": "object", - "description": "", "properties": { "additionalCORSAllowedOrigins": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "audit": { @@ -7601,7 +6550,6 @@ }, "os_config_APIServerStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.APIServerStatus", "javaInterfaces": [ @@ -7610,11 +6558,9 @@ }, "os_config_AWSPlatformSpec": { "type": "object", - "description": "", "properties": { "serviceEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_AWSServiceEndpoint", @@ -7630,15 +6576,12 @@ }, "os_config_AWSPlatformStatus": { "type": "object", - "description": "", "properties": { "region": { - "type": "string", - "description": "" + "type": "string" }, "serviceEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_AWSServiceEndpoint", @@ -7654,15 +6597,12 @@ }, "os_config_AWSServiceEndpoint": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7673,11 +6613,9 @@ }, "os_config_Audit": { "type": "object", - "description": "", "properties": { "profile": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7688,7 +6626,6 @@ }, "os_config_AzurePlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.AzurePlatformSpec", "javaInterfaces": [ @@ -7697,19 +6634,15 @@ }, "os_config_AzurePlatformStatus": { "type": "object", - "description": "", "properties": { "cloudName": { - "type": "string", - "description": "" + "type": "string" }, "networkResourceGroupName": { - "type": "string", - "description": "" + "type": "string" }, "resourceGroupName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7720,7 +6653,6 @@ }, "os_config_BareMetalPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.BareMetalPlatformSpec", "javaInterfaces": [ @@ -7729,19 +6661,15 @@ }, "os_config_BareMetalPlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7752,7 +6680,6 @@ }, "os_config_BasicAuthIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -7767,8 +6694,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7779,17 +6705,14 @@ }, "os_config_ClusterOperator": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterOperator", "required": true }, @@ -7814,17 +6737,14 @@ }, "os_config_ClusterOperatorList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_ClusterOperator", "existingJavaType": "io.fabric8.openshift.api.model.ClusterOperator" @@ -7832,7 +6752,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterOperatorList", "required": true }, @@ -7850,7 +6769,6 @@ }, "os_config_ClusterOperatorSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.ClusterOperatorSpec", "javaInterfaces": [ @@ -7859,11 +6777,9 @@ }, "os_config_ClusterOperatorStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ClusterOperatorStatusCondition", @@ -7876,7 +6792,6 @@ }, "relatedObjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ObjectReference", @@ -7885,7 +6800,6 @@ }, "versions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_OperandVersion", @@ -7901,27 +6815,22 @@ }, "os_config_ClusterOperatorStatusCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -7932,17 +6841,14 @@ }, "os_config_ClusterVersion": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterVersion", "required": true }, @@ -7967,17 +6873,14 @@ }, "os_config_ClusterVersionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_ClusterVersion", "existingJavaType": "io.fabric8.openshift.api.model.ClusterVersion" @@ -7985,7 +6888,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterVersionList", "required": true }, @@ -8003,15 +6905,12 @@ }, "os_config_ClusterVersionSpec": { "type": "object", - "description": "", "properties": { "channel": { - "type": "string", - "description": "" + "type": "string" }, "clusterID": { - "type": "string", - "description": "" + "type": "string" }, "desiredUpdate": { "$ref": "#/definitions/os_config_Update", @@ -8019,7 +6918,6 @@ }, "overrides": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ComponentOverride", @@ -8027,8 +6925,7 @@ } }, "upstream": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8039,11 +6936,9 @@ }, "os_config_ClusterVersionStatus": { "type": "object", - "description": "", "properties": { "availableUpdates": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Release", "existingJavaType": "io.fabric8.openshift.api.model.Release" @@ -8051,7 +6946,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ClusterOperatorStatusCondition", @@ -8064,7 +6958,6 @@ }, "history": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_UpdateHistory", @@ -8073,12 +6966,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "versionHash": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8089,27 +6980,21 @@ }, "os_config_ComponentOverride": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "unmanaged": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -8120,15 +7005,12 @@ }, "os_config_ConfigMapFileReference": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8139,11 +7021,9 @@ }, "os_config_ConfigMapNameReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8154,24 +7034,19 @@ }, "os_config_CustomFeatureGates": { "type": "object", - "description": "", "properties": { "disabled": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "enabled": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8183,19 +7058,15 @@ }, "os_config_CustomTLSProfile": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8206,18 +7077,14 @@ }, "os_config_DNSZone": { "type": "object", - "description": "", "properties": { "id": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -8230,17 +7097,14 @@ }, "os_config_FeatureGate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "FeatureGate", "required": true }, @@ -8265,17 +7129,14 @@ }, "os_config_FeatureGateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_FeatureGate", "existingJavaType": "io.fabric8.openshift.api.model.FeatureGate" @@ -8283,7 +7144,6 @@ }, "kind": { "type": "string", - "description": "", "default": "FeatureGateList", "required": true }, @@ -8301,15 +7161,13 @@ }, "os_config_FeatureGateSelection": { "type": "object", - "description": "", "properties": { "customNoUpgrade": { "$ref": "#/definitions/os_config_CustomFeatureGates", "existingJavaType": "io.fabric8.openshift.api.model.CustomFeatureGates" }, "featureSet": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8320,15 +7178,13 @@ }, "os_config_FeatureGateSpec": { "type": "object", - "description": "", "properties": { "customNoUpgrade": { "$ref": "#/definitions/os_config_CustomFeatureGates", "existingJavaType": "io.fabric8.openshift.api.model.CustomFeatureGates" }, "featureSet": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8339,7 +7195,6 @@ }, "os_config_FeatureGateStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.FeatureGateStatus", "javaInterfaces": [ @@ -8348,7 +7203,6 @@ }, "os_config_GCPPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.GCPPlatformSpec", "javaInterfaces": [ @@ -8357,15 +7211,12 @@ }, "os_config_GCPPlatformStatus": { "type": "object", - "description": "", "properties": { "projectID": { - "type": "string", - "description": "" + "type": "string" }, "region": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8376,40 +7227,33 @@ }, "os_config_GitHubIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "organizations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "teams": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8421,23 +7265,20 @@ }, "os_config_GitLabIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8448,19 +7289,16 @@ }, "os_config_GoogleIdentityProvider": { "type": "object", - "description": "", "properties": { "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "hostedDomain": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8471,7 +7309,6 @@ }, "os_config_HTPasswdIdentityProvider": { "type": "object", - "description": "", "properties": { "fileData": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -8486,15 +7323,12 @@ }, "os_config_HubSource": { "type": "object", - "description": "", "properties": { "disabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8505,23 +7339,18 @@ }, "os_config_HubSourceStatus": { "type": "object", - "description": "", "properties": { "disabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8532,7 +7361,6 @@ }, "os_config_IBMCloudPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.IBMCloudPlatformSpec", "javaInterfaces": [ @@ -8541,19 +7369,15 @@ }, "os_config_IBMCloudPlatformStatus": { "type": "object", - "description": "", "properties": { "location": { - "type": "string", - "description": "" + "type": "string" }, "providerType": { - "type": "string", - "description": "" + "type": "string" }, "resourceGroupName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8564,7 +7388,6 @@ }, "os_config_IdentityProvider": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_config_BasicAuthIdentityProvider", @@ -8595,12 +7418,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.LDAPIdentityProvider" }, "mappingMethod": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "openID": { "$ref": "#/definitions/os_config_OpenIDIdentityProvider", @@ -8611,8 +7432,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RequestHeaderIdentityProvider" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8623,7 +7443,6 @@ }, "os_config_IdentityProviderConfig": { "type": "object", - "description": "", "properties": { "basicAuth": { "$ref": "#/definitions/os_config_BasicAuthIdentityProvider", @@ -8662,8 +7481,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RequestHeaderIdentityProvider" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8674,17 +7492,14 @@ }, "os_config_Infrastructure": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Infrastructure", "required": true }, @@ -8709,17 +7524,14 @@ }, "os_config_InfrastructureList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Infrastructure", "existingJavaType": "io.fabric8.openshift.api.model.Infrastructure" @@ -8727,7 +7539,6 @@ }, "kind": { "type": "string", - "description": "", "default": "InfrastructureList", "required": true }, @@ -8745,7 +7556,6 @@ }, "os_config_InfrastructureSpec": { "type": "object", - "description": "", "properties": { "cloudConfig": { "$ref": "#/definitions/os_config_ConfigMapFileReference", @@ -8764,27 +7574,21 @@ }, "os_config_InfrastructureStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalURI": { - "type": "string", - "description": "" + "type": "string" }, "apiServerURL": { - "type": "string", - "description": "" + "type": "string" }, "etcdDiscoveryDomain": { - "type": "string", - "description": "" + "type": "string" }, "infrastructureName": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" }, "platformStatus": { "$ref": "#/definitions/os_config_PlatformStatus", @@ -8799,7 +7603,6 @@ }, "os_config_IntermediateTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.IntermediateTLSProfile", "javaInterfaces": [ @@ -8808,15 +7611,13 @@ }, "os_config_KeystoneIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "domainName": { - "type": "string", - "description": "" + "type": "string" }, "tlsClientCert": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -8827,8 +7628,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8839,41 +7639,32 @@ }, "os_config_LDAPAttributeMapping": { "type": "object", - "description": "", "properties": { "email": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "id": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsername": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -8885,15 +7676,13 @@ }, "os_config_LDAPIdentityProvider": { "type": "object", - "description": "", "properties": { "attributes": { "$ref": "#/definitions/os_config_LDAPAttributeMapping", "existingJavaType": "io.fabric8.openshift.api.model.LDAPAttributeMapping" }, "bindDN": { - "type": "string", - "description": "" + "type": "string" }, "bindPassword": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -8904,12 +7693,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "insecure": { - "type": "boolean", - "description": "" + "type": "boolean" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -8920,7 +7707,6 @@ }, "os_config_ModernTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.ModernTLSProfile", "javaInterfaces": [ @@ -8929,17 +7715,14 @@ }, "os_config_OAuth": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OAuth", "required": true }, @@ -8964,17 +7747,14 @@ }, "os_config_OAuthList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_OAuth", "existingJavaType": "io.fabric8.openshift.api.model.OAuth" @@ -8982,7 +7762,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthList", "required": true }, @@ -9000,7 +7779,6 @@ }, "os_config_OAuthRemoteConnectionInfo": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -9015,8 +7793,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9027,11 +7804,9 @@ }, "os_config_OAuthSpec": { "type": "object", - "description": "", "properties": { "identityProviders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_IdentityProvider", @@ -9055,7 +7830,6 @@ }, "os_config_OAuthStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OAuthStatus", "javaInterfaces": [ @@ -9064,7 +7838,6 @@ }, "os_config_OAuthTemplates": { "type": "object", - "description": "", "properties": { "error": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -9087,23 +7860,18 @@ }, "os_config_ObjectReference": { "type": "object", - "description": "", "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9114,7 +7882,6 @@ }, "os_config_OldTLSProfile": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OldTLSProfile", "javaInterfaces": [ @@ -9123,33 +7890,26 @@ }, "os_config_OpenIDClaims": { "type": "object", - "description": "", "properties": { "email": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsername": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9161,7 +7921,6 @@ }, "os_config_OpenIDIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -9172,8 +7931,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OpenIDClaims" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -9181,25 +7939,20 @@ }, "extraAuthorizeParameters": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "extraScopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "issuer": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9210,7 +7963,6 @@ }, "os_config_OpenStackPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OpenStackPlatformSpec", "javaInterfaces": [ @@ -9219,23 +7971,18 @@ }, "os_config_OpenStackPlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "cloudName": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9246,15 +7993,12 @@ }, "os_config_OperandVersion": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9265,17 +8009,14 @@ }, "os_config_OperatorHub": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OperatorHub", "required": true }, @@ -9300,17 +8041,14 @@ }, "os_config_OperatorHubList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_OperatorHub", "existingJavaType": "io.fabric8.openshift.api.model.OperatorHub" @@ -9318,7 +8056,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OperatorHubList", "required": true }, @@ -9336,15 +8073,12 @@ }, "os_config_OperatorHubSpec": { "type": "object", - "description": "", "properties": { "disableAllDefaultSources": { - "type": "boolean", - "description": "" + "type": "boolean" }, "sources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_HubSource", @@ -9360,11 +8094,9 @@ }, "os_config_OperatorHubStatus": { "type": "object", - "description": "", "properties": { "sources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_HubSourceStatus", @@ -9380,7 +8112,6 @@ }, "os_config_OvirtPlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.OvirtPlatformSpec", "javaInterfaces": [ @@ -9389,19 +8120,15 @@ }, "os_config_OvirtPlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9412,7 +8139,6 @@ }, "os_config_PlatformSpec": { "type": "object", - "description": "", "properties": { "aws": { "$ref": "#/definitions/os_config_AWSPlatformSpec", @@ -9443,8 +8169,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OvirtPlatformSpec" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "vsphere": { "$ref": "#/definitions/os_config_VSpherePlatformSpec", @@ -9459,7 +8184,6 @@ }, "os_config_PlatformStatus": { "type": "object", - "description": "", "properties": { "aws": { "$ref": "#/definitions/os_config_AWSPlatformStatus", @@ -9490,8 +8214,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OvirtPlatformStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "vsphere": { "$ref": "#/definitions/os_config_VSpherePlatformStatus", @@ -9506,17 +8229,14 @@ }, "os_config_Proxy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Proxy", "required": true }, @@ -9541,17 +8261,14 @@ }, "os_config_ProxyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Proxy", "existingJavaType": "io.fabric8.openshift.api.model.Proxy" @@ -9559,7 +8276,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ProxyList", "required": true }, @@ -9577,27 +8293,21 @@ }, "os_config_ProxySpec": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" }, "readinessEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "trustedCA": { @@ -9613,19 +8323,15 @@ }, "os_config_ProxyStatus": { "type": "object", - "description": "", "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9636,28 +8342,22 @@ }, "os_config_Release": { "type": "object", - "description": "", "properties": { "channels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9668,59 +8368,46 @@ }, "os_config_RequestHeaderIdentityProvider": { "type": "object", - "description": "", "properties": { "ca": { "$ref": "#/definitions/os_config_ConfigMapNameReference", "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "challengeURL": { - "type": "string", - "description": "" + "type": "string" }, "clientCommonNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "emailHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "headers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "loginURL": { - "type": "string", - "description": "" + "type": "string" }, "nameHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsernameHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -9732,17 +8419,14 @@ }, "os_config_Scheduler": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Scheduler", "required": true }, @@ -9767,17 +8451,14 @@ }, "os_config_SchedulerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Scheduler", "existingJavaType": "io.fabric8.openshift.api.model.Scheduler" @@ -9785,7 +8466,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SchedulerList", "required": true }, @@ -9803,15 +8483,12 @@ }, "os_config_SchedulerSpec": { "type": "object", - "description": "", "properties": { "defaultNodeSelector": { - "type": "string", - "description": "" + "type": "string" }, "mastersSchedulable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "policy": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -9826,7 +8503,6 @@ }, "os_config_SchedulerStatus": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.SchedulerStatus", "javaInterfaces": [ @@ -9835,11 +8511,9 @@ }, "os_config_SecretNameReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9850,19 +8524,15 @@ }, "os_config_TLSProfileSpec": { "type": "object", - "description": "", "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9873,7 +8543,6 @@ }, "os_config_TLSSecurityProfile": { "type": "object", - "description": "", "properties": { "custom": { "$ref": "#/definitions/os_config_CustomTLSProfile", @@ -9892,8 +8561,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OldTLSProfile" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9904,19 +8572,16 @@ }, "os_config_TokenConfig": { "type": "object", - "description": "", "properties": { "accessTokenInactivityTimeout": { "$ref": "#/definitions/kubernetes_apimachinery_Duration", "existingJavaType": "io.fabric8.kubernetes.api.model.Duration" }, "accessTokenInactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "accessTokenMaxAgeSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -9927,19 +8592,15 @@ }, "os_config_Update": { "type": "object", - "description": "", "properties": { "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9950,31 +8611,26 @@ }, "os_config_UpdateHistory": { "type": "object", - "description": "", "properties": { "completionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "startedTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "state": { - "type": "string", - "description": "" + "type": "string" }, "verified": { - "type": "boolean", - "description": "" + "type": "boolean" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -9985,7 +8641,6 @@ }, "os_config_VSpherePlatformSpec": { "type": "object", - "description": "", "additionalProperties": true, "javaType": "io.fabric8.openshift.api.model.VSpherePlatformSpec", "javaInterfaces": [ @@ -9994,19 +8649,15 @@ }, "os_config_VSpherePlatformStatus": { "type": "object", - "description": "", "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10017,20 +8668,16 @@ }, "os_deploy_CustomDeploymentStrategyParams": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "environment": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10038,8 +8685,7 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10050,15 +8696,13 @@ }, "os_deploy_DeploymentCause": { "type": "object", - "description": "", "properties": { "imageTrigger": { "$ref": "#/definitions/os_deploy_DeploymentCauseImageTrigger", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentCauseImageTrigger" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10069,7 +8713,6 @@ }, "os_deploy_DeploymentCauseImageTrigger": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10084,7 +8727,6 @@ }, "os_deploy_DeploymentCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -10095,20 +8737,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10119,17 +8757,14 @@ }, "os_deploy_DeploymentConfig": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DeploymentConfig", "required": true }, @@ -10155,17 +8790,14 @@ }, "os_deploy_DeploymentConfigList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentConfig", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentConfig" @@ -10173,7 +8805,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentConfigList", "required": true }, @@ -10191,30 +8822,23 @@ }, "os_deploy_DeploymentConfigSpec": { "type": "object", - "description": "", "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -10227,12 +8851,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "test": { - "type": "boolean", - "description": "" + "type": "boolean" }, "triggers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentTriggerPolicy", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentTriggerPolicy" @@ -10247,15 +8869,12 @@ }, "os_deploy_DeploymentConfigStatus": { "type": "object", - "description": "", "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_deploy_DeploymentCondition", @@ -10268,29 +8887,23 @@ }, "latestVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -10301,19 +8914,16 @@ }, "os_deploy_DeploymentDetails": { "type": "object", - "description": "", "properties": { "causes": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentCause", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentCause" } }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10324,19 +8934,15 @@ }, "os_deploy_DeploymentStrategy": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -10346,10 +8952,8 @@ }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -10366,8 +8970,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RollingDeploymentStrategyParams" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10378,19 +8981,15 @@ }, "os_deploy_DeploymentTriggerImageChangeParams": { "type": "object", - "description": "", "properties": { "automatic": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containerNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "from": { @@ -10398,8 +8997,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "lastTriggeredImage": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10410,15 +9008,13 @@ }, "os_deploy_DeploymentTriggerPolicy": { "type": "object", - "description": "", "properties": { "imageChangeParams": { "$ref": "#/definitions/os_deploy_DeploymentTriggerImageChangeParams", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentTriggerImageChangeParams" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10429,23 +9025,18 @@ }, "os_deploy_ExecNewPodHook": { "type": "object", - "description": "", "properties": { "command": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "containerName": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -10454,11 +9045,9 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -10470,19 +9059,16 @@ }, "os_deploy_LifecycleHook": { "type": "object", - "description": "", "properties": { "execNewPod": { "$ref": "#/definitions/os_deploy_ExecNewPodHook", "existingJavaType": "io.fabric8.openshift.api.model.ExecNewPodHook" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tagImages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_deploy_TagImageHook", @@ -10498,7 +9084,6 @@ }, "os_deploy_RecreateDeploymentStrategyParams": { "type": "object", - "description": "", "properties": { "mid": { "$ref": "#/definitions/os_deploy_LifecycleHook", @@ -10514,7 +9099,6 @@ }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -10526,11 +9110,9 @@ }, "os_deploy_RollingDeploymentStrategyParams": { "type": "object", - "description": "", "properties": { "intervalSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxSurge": { @@ -10551,12 +9133,10 @@ }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -10568,11 +9148,9 @@ }, "os_deploy_TagImageHook": { "type": "object", - "description": "", "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "to": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10587,58 +9165,47 @@ }, "os_image_Image": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "dockerImageConfig": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageLayers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageLayer", "existingJavaType": "io.fabric8.openshift.api.model.ImageLayer" } }, "dockerImageManifest": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageManifestMediaType": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageMetadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_ImageRawExtension", "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension" }, "dockerImageMetadataVersion": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageSignatures": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "Image", "required": true }, @@ -10648,7 +9215,6 @@ }, "signatures": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageSignature", @@ -10665,7 +9231,6 @@ }, "os_image_ImageImportSpec": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -10676,8 +9241,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "includeManifest": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -10696,7 +9260,6 @@ }, "os_image_ImageImportStatus": { "type": "object", - "description": "", "properties": { "image": { "$ref": "#/definitions/os_image_Image", @@ -10707,8 +9270,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Status" }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10719,19 +9281,15 @@ }, "os_image_ImageLayer": { "type": "object", - "description": "", "properties": { "mediaType": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "size": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -10743,17 +9301,14 @@ }, "os_image_ImageList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_Image", "existingJavaType": "io.fabric8.openshift.api.model.Image" @@ -10761,7 +9316,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageList", "required": true }, @@ -10779,11 +9333,9 @@ }, "os_image_ImageLookupPolicy": { "type": "object", - "description": "", "properties": { "local": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -10794,17 +9346,14 @@ }, "os_image_ImageSignature": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_SignatureCondition", @@ -10812,16 +9361,14 @@ } }, "content": { - "type": "string", - "description": "" + "type": "string" }, "created": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "imageIdentity": { - "type": "string", - "description": "" + "type": "string" }, "issuedBy": { "$ref": "#/definitions/os_image_SignatureIssuer", @@ -10833,7 +9380,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageSignature", "required": true }, @@ -10843,16 +9389,13 @@ }, "signedClaims": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -10864,17 +9407,14 @@ }, "os_image_ImageStream": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageStream", "required": true }, @@ -10900,11 +9440,9 @@ }, "os_image_ImageStreamImage": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -10914,7 +9452,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamImage", "required": true }, @@ -10932,17 +9469,14 @@ }, "os_image_ImageStreamImport": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageStreamImport", "required": true }, @@ -10968,11 +9502,9 @@ }, "os_image_ImageStreamImportSpec": { "type": "object", - "description": "", "properties": { "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportSpec", @@ -10980,8 +9512,7 @@ } }, "import": { - "type": "boolean", - "description": "" + "type": "boolean" }, "repository": { "$ref": "#/definitions/os_image_RepositoryImportSpec", @@ -10996,11 +9527,9 @@ }, "os_image_ImageStreamImportStatus": { "type": "object", - "description": "", "properties": { "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportStatus", @@ -11024,17 +9553,14 @@ }, "os_image_ImageStreamList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageStream", "existingJavaType": "io.fabric8.openshift.api.model.ImageStream" @@ -11042,7 +9568,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamList", "required": true }, @@ -11060,11 +9585,9 @@ }, "os_image_ImageStreamMapping": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -11074,7 +9597,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamMapping", "required": true }, @@ -11083,8 +9605,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11096,11 +9617,9 @@ }, "os_image_ImageStreamSpec": { "type": "object", - "description": "", "properties": { "dockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "lookupPolicy": { "$ref": "#/definitions/os_image_ImageLookupPolicy", @@ -11108,7 +9627,6 @@ }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagReference", @@ -11124,19 +9642,15 @@ }, "os_image_ImageStreamStatus": { "type": "object", - "description": "", "properties": { "dockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "publicDockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_NamedTagEventList", @@ -11152,17 +9666,14 @@ }, "os_image_ImageStreamTag": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagEventCondition", @@ -11171,7 +9682,6 @@ }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "image": { @@ -11180,7 +9690,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamTag", "required": true }, @@ -11206,17 +9715,14 @@ }, "os_image_ImageStreamTagList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageStreamTag", "existingJavaType": "io.fabric8.openshift.api.model.ImageStreamTag" @@ -11224,7 +9730,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamTagList", "required": true }, @@ -11242,11 +9747,9 @@ }, "os_image_ImageTag": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -11256,7 +9759,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageTag", "required": true }, @@ -11282,17 +9784,14 @@ }, "os_image_ImageTagList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageTag", "existingJavaType": "io.fabric8.openshift.api.model.ImageTag" @@ -11300,7 +9799,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageTagList", "required": true }, @@ -11318,11 +9816,9 @@ }, "os_image_NamedTagEventList": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagEventCondition", @@ -11331,15 +9827,13 @@ }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_TagEvent", "existingJavaType": "io.fabric8.openshift.api.model.TagEvent" } }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11350,7 +9844,6 @@ }, "os_image_RepositoryImportSpec": { "type": "object", - "description": "", "properties": { "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -11361,8 +9854,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "includeManifest": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -11377,20 +9869,16 @@ }, "os_image_RepositoryImportStatus": { "type": "object", - "description": "", "properties": { "additionalTags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportStatus", @@ -11410,7 +9898,6 @@ }, "os_image_SignatureCondition": { "type": "object", - "description": "", "properties": { "lastProbeTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -11421,20 +9908,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11445,15 +9928,12 @@ }, "os_image_SignatureGenericEntity": { "type": "object", - "description": "", "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11464,15 +9944,12 @@ }, "os_image_SignatureIssuer": { "type": "object", - "description": "", "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11483,19 +9960,15 @@ }, "os_image_SignatureSubject": { "type": "object", - "description": "", "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" }, "publicKeyID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11506,24 +9979,20 @@ }, "os_image_TagEvent": { "type": "object", - "description": "", "properties": { "created": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "dockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "image": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11534,11 +10003,9 @@ }, "os_image_TagEventCondition": { "type": "object", - "description": "", "properties": { "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "lastTransitionTime": { @@ -11546,20 +10013,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11570,15 +10033,12 @@ }, "os_image_TagImportPolicy": { "type": "object", - "description": "", "properties": { "insecure": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scheduled": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true, @@ -11589,14 +10049,11 @@ }, "os_image_TagReference": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -11606,7 +10063,6 @@ }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "importPolicy": { @@ -11614,12 +10070,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "reference": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -11634,11 +10088,9 @@ }, "os_image_TagReferencePolicy": { "type": "object", - "description": "", "properties": { "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11649,29 +10101,24 @@ }, "os_network_ClusterNetwork": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "clusterNetworks": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.ClusterNetworkEntry" } }, "hostsubnetlength": { - "type": "integer", - "description": "" + "type": "integer" }, "kind": { "type": "string", - "description": "", "default": "ClusterNetwork", "required": true }, @@ -11680,24 +10127,19 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" }, "network": { - "type": "string", - "description": "" + "type": "string" }, "pluginName": { - "type": "string", - "description": "" + "type": "string" }, "serviceNetwork": { - "type": "string", - "description": "" + "type": "string" }, "vxlanPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -11708,15 +10150,12 @@ }, "os_network_ClusterNetworkEntry": { "type": "object", - "description": "", "properties": { "CIDR": { - "type": "string", - "description": "" + "type": "string" }, "hostSubnetLength": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -11727,17 +10166,14 @@ }, "os_network_ClusterNetworkList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_ClusterNetwork", "existingJavaType": "io.fabric8.openshift.api.model.ClusterNetwork" @@ -11745,7 +10181,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterNetworkList", "required": true }, @@ -11763,17 +10198,14 @@ }, "os_network_EgressNetworkPolicy": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EgressNetworkPolicy", "required": true }, @@ -11795,17 +10227,14 @@ }, "os_network_EgressNetworkPolicyList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_EgressNetworkPolicy", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicy" @@ -11813,7 +10242,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EgressNetworkPolicyList", "required": true }, @@ -11831,15 +10259,12 @@ }, "os_network_EgressNetworkPolicyPeer": { "type": "object", - "description": "", "properties": { "cidrSelector": { - "type": "string", - "description": "" + "type": "string" }, "dnsName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11850,15 +10275,13 @@ }, "os_network_EgressNetworkPolicyRule": { "type": "object", - "description": "", "properties": { "to": { "$ref": "#/definitions/os_network_EgressNetworkPolicyPeer", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicyPeer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11869,11 +10292,9 @@ }, "os_network_EgressNetworkPolicySpec": { "type": "object", - "description": "", "properties": { "egress": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_EgressNetworkPolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicyRule" @@ -11888,26 +10309,21 @@ }, "os_network_NetNamespace": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "egressIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "NetNamespace", "required": true }, @@ -11916,12 +10332,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "netid": { - "type": "integer", - "description": "" + "type": "integer" }, "netname": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -11932,17 +10346,14 @@ }, "os_network_NetNamespaceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_NetNamespace", "existingJavaType": "io.fabric8.openshift.api.model.NetNamespace" @@ -11950,7 +10361,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetNamespaceList", "required": true }, @@ -11968,26 +10378,20 @@ }, "os_oauth_ClusterRoleScopeRestriction": { "type": "object", - "description": "", "properties": { "allowEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "namespaces": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "roleNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -11999,34 +10403,27 @@ }, "os_oauth_OAuthAccessToken": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "authorizeToken": { - "type": "string", - "description": "" + "type": "string" }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "expiresIn": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "inactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "kind": { "type": "string", - "description": "", "default": "OAuthAccessToken", "required": true }, @@ -12035,29 +10432,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "redirectURI": { - "type": "string", - "description": "" + "type": "string" }, "refreshToken": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12069,17 +10460,14 @@ }, "os_oauth_OAuthAccessTokenList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthAccessToken", "existingJavaType": "io.fabric8.openshift.api.model.OAuthAccessToken" @@ -12087,7 +10475,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthAccessTokenList", "required": true }, @@ -12105,34 +10492,27 @@ }, "os_oauth_OAuthAuthorizeToken": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "codeChallenge": { - "type": "string", - "description": "" + "type": "string" }, "codeChallengeMethod": { - "type": "string", - "description": "" + "type": "string" }, "expiresIn": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "OAuthAuthorizeToken", "required": true }, @@ -12141,29 +10521,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "redirectURI": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "state": { - "type": "string", - "description": "" + "type": "string" }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12175,17 +10549,14 @@ }, "os_oauth_OAuthAuthorizeTokenList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthAuthorizeToken", "existingJavaType": "io.fabric8.openshift.api.model.OAuthAuthorizeToken" @@ -12193,7 +10564,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthAuthorizeTokenList", "required": true }, @@ -12211,38 +10581,30 @@ }, "os_oauth_OAuthClient": { "type": "object", - "description": "", "properties": { "accessTokenInactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "accessTokenMaxAgeSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "additionalSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "grantMethod": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "OAuthClient", "required": true }, @@ -12252,20 +10614,16 @@ }, "redirectURIs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "respondWithChallenges": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scopeRestrictions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_oauth_ScopeRestriction", @@ -12273,8 +10631,7 @@ } }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12286,21 +10643,17 @@ }, "os_oauth_OAuthClientAuthorization": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "OAuthClientAuthorization", "required": true }, @@ -12310,20 +10663,16 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12335,17 +10684,14 @@ }, "os_oauth_OAuthClientAuthorizationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthClientAuthorization", "existingJavaType": "io.fabric8.openshift.api.model.OAuthClientAuthorization" @@ -12353,7 +10699,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthClientAuthorizationList", "required": true }, @@ -12371,17 +10716,14 @@ }, "os_oauth_OAuthClientList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthClient", "existingJavaType": "io.fabric8.openshift.api.model.OAuthClient" @@ -12389,7 +10731,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthClientList", "required": true }, @@ -12407,7 +10748,6 @@ }, "os_oauth_ScopeRestriction": { "type": "object", - "description": "", "properties": { "clusterRole": { "$ref": "#/definitions/os_oauth_ClusterRoleScopeRestriction", @@ -12415,11 +10755,9 @@ }, "literals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12431,17 +10769,14 @@ }, "os_project_Project": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Project", "required": true }, @@ -12467,17 +10802,14 @@ }, "os_project_ProjectList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_project_Project", "existingJavaType": "io.fabric8.openshift.api.model.Project" @@ -12485,7 +10817,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ProjectList", "required": true }, @@ -12503,25 +10834,20 @@ }, "os_project_ProjectRequest": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ProjectRequest", "required": true }, @@ -12539,15 +10865,12 @@ }, "os_project_ProjectSpec": { "type": "object", - "description": "", "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -12559,11 +10882,9 @@ }, "os_project_ProjectStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -12571,8 +10892,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12583,17 +10903,14 @@ }, "os_quota_AppliedClusterResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "AppliedClusterResourceQuota", "required": true }, @@ -12619,17 +10936,14 @@ }, "os_quota_AppliedClusterResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_AppliedClusterResourceQuota", "existingJavaType": "io.fabric8.openshift.api.model.AppliedClusterResourceQuota" @@ -12637,7 +10951,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AppliedClusterResourceQuotaList", "required": true }, @@ -12655,17 +10968,14 @@ }, "os_quota_ClusterResourceQuota": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterResourceQuota", "required": true }, @@ -12690,17 +11000,14 @@ }, "os_quota_ClusterResourceQuotaList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_ClusterResourceQuota", "existingJavaType": "io.fabric8.openshift.api.model.ClusterResourceQuota" @@ -12708,7 +11015,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterResourceQuotaList", "required": true }, @@ -12726,14 +11032,11 @@ }, "os_quota_ClusterResourceQuotaSelector": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -12750,7 +11053,6 @@ }, "os_quota_ClusterResourceQuotaSpec": { "type": "object", - "description": "", "properties": { "quota": { "$ref": "#/definitions/kubernetes_core_ResourceQuotaSpec", @@ -12769,11 +11071,9 @@ }, "os_quota_ClusterResourceQuotaStatus": { "type": "object", - "description": "", "properties": { "namespaces": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_ResourceQuotaStatusByNamespace", "existingJavaType": "io.fabric8.openshift.api.model.ResourceQuotaStatusByNamespace" @@ -12792,11 +11092,9 @@ }, "os_quota_ResourceQuotaStatusByNamespace": { "type": "object", - "description": "", "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/kubernetes_core_ResourceQuotaStatus", @@ -12811,17 +11109,14 @@ }, "os_route_Route": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "route.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Route", "required": true }, @@ -12847,11 +11142,9 @@ }, "os_route_RouteIngress": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteIngressCondition", @@ -12859,20 +11152,16 @@ } }, "host": { - "type": "string", - "description": "" + "type": "string" }, "routerCanonicalHostname": { - "type": "string", - "description": "" + "type": "string" }, "routerName": { - "type": "string", - "description": "" + "type": "string" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12883,27 +11172,22 @@ }, "os_route_RouteIngressCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -12914,17 +11198,14 @@ }, "os_route_RouteList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "route.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_route_Route", "existingJavaType": "io.fabric8.openshift.api.model.Route" @@ -12932,7 +11213,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RouteList", "required": true }, @@ -12950,7 +11230,6 @@ }, "os_route_RoutePort": { "type": "object", - "description": "", "properties": { "targetPort": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -12965,11 +11244,9 @@ }, "os_route_RouteSpec": { "type": "object", - "description": "", "properties": { "alternateBackends": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteTargetReference", @@ -12977,20 +11254,17 @@ } }, "host": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/os_route_RoutePort", "existingJavaType": "io.fabric8.openshift.api.model.RoutePort" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "tls": { "$ref": "#/definitions/os_route_TLSConfig", @@ -13001,8 +11275,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RouteTargetReference" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13013,11 +11286,9 @@ }, "os_route_RouteStatus": { "type": "object", - "description": "", "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteIngress", @@ -13033,19 +11304,15 @@ }, "os_route_RouteTargetReference": { "type": "object", - "description": "", "properties": { "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true, @@ -13056,31 +11323,24 @@ }, "os_route_TLSConfig": { "type": "object", - "description": "", "properties": { "caCertificate": { - "type": "string", - "description": "" + "type": "string" }, "certificate": { - "type": "string", - "description": "" + "type": "string" }, "destinationCACertificate": { - "type": "string", - "description": "" + "type": "string" }, "insecureEdgeTerminationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "termination": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13091,11 +11351,9 @@ }, "os_security_AllowedFlexVolume": { "type": "object", - "description": "", "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13106,11 +11364,9 @@ }, "os_security_FSGroupStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_IDRange", @@ -13118,8 +11374,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13130,16 +11385,13 @@ }, "os_security_IDRange": { "type": "object", - "description": "", "properties": { "max": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "min": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -13151,17 +11403,14 @@ }, "os_security_PodSecurityPolicyReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicyReview", "required": true }, @@ -13182,15 +11431,12 @@ }, "os_security_PodSecurityPolicyReviewSpec": { "type": "object", - "description": "", "properties": { "serviceAccountNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "template": { @@ -13206,11 +11452,9 @@ }, "os_security_PodSecurityPolicyReviewStatus": { "type": "object", - "description": "", "properties": { "allowedServiceAccounts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_ServiceAccountPodSecurityPolicyReviewStatus", "existingJavaType": "io.fabric8.openshift.api.model.ServiceAccountPodSecurityPolicyReviewStatus" @@ -13225,17 +11469,14 @@ }, "os_security_PodSecurityPolicySelfSubjectReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicySelfSubjectReview", "required": true }, @@ -13256,7 +11497,6 @@ }, "os_security_PodSecurityPolicySelfSubjectReviewSpec": { "type": "object", - "description": "", "properties": { "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -13271,17 +11511,14 @@ }, "os_security_PodSecurityPolicySubjectReview": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicySubjectReview", "required": true }, @@ -13302,15 +11539,12 @@ }, "os_security_PodSecurityPolicySubjectReviewSpec": { "type": "object", - "description": "", "properties": { "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "template": { @@ -13318,8 +11552,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13330,15 +11563,13 @@ }, "os_security_PodSecurityPolicySubjectReviewStatus": { "type": "object", - "description": "", "properties": { "allowedBy": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -13353,21 +11584,17 @@ }, "os_security_RangeAllocation": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "data": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "RangeAllocation", "required": true }, @@ -13376,8 +11603,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "range": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13388,17 +11614,14 @@ }, "os_security_RangeAllocationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_RangeAllocation", "existingJavaType": "io.fabric8.openshift.api.model.RangeAllocation" @@ -13406,7 +11629,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RangeAllocationList", "required": true }, @@ -13424,25 +11646,20 @@ }, "os_security_RunAsUserStrategyOptions": { "type": "object", - "description": "", "properties": { "type": { - "type": "string", - "description": "" + "type": "string" }, "uid": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "uidRangeMax": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "uidRangeMin": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -13454,15 +11671,13 @@ }, "os_security_SELinuxContextStrategyOptions": { "type": "object", - "description": "", "properties": { "seLinuxOptions": { "$ref": "#/definitions/kubernetes_core_SELinuxOptions", "existingJavaType": "io.fabric8.kubernetes.api.model.SELinuxOptions" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13473,47 +11688,36 @@ }, "os_security_SecurityContextConstraints": { "type": "object", - "description": "", "properties": { "allowHostDirVolumePlugin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostPorts": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowPrivilegedContainer": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedFlexVolumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_AllowedFlexVolume", @@ -13522,38 +11726,30 @@ }, "allowedUnsafeSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "defaultAddCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAllowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forbiddenSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fsGroup": { @@ -13562,15 +11758,12 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "SecurityContextConstraints", "required": true }, @@ -13579,19 +11772,15 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requiredDropCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "runAsUser": { @@ -13604,11 +11793,9 @@ }, "seccompProfiles": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "supplementalGroups": { @@ -13617,18 +11804,14 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "volumes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -13641,17 +11824,14 @@ }, "os_security_SecurityContextConstraintsList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_SecurityContextConstraints", "existingJavaType": "io.fabric8.openshift.api.model.SecurityContextConstraints" @@ -13659,7 +11839,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecurityContextConstraintsList", "required": true }, @@ -13677,19 +11856,16 @@ }, "os_security_ServiceAccountPodSecurityPolicyReviewStatus": { "type": "object", - "description": "", "properties": { "allowedBy": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -13704,11 +11880,9 @@ }, "os_security_SupplementalGroupsStrategyOptions": { "type": "object", - "description": "", "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_IDRange", @@ -13716,8 +11890,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13728,35 +11901,27 @@ }, "os_template_Parameter": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "from": { - "type": "string", - "description": "" + "type": "string" }, "generate": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "required": { - "type": "boolean", - "description": "" + "type": "boolean" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true, @@ -13767,32 +11932,26 @@ }, "os_template_Template": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "template.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Template", "required": true }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -13800,7 +11959,6 @@ }, "objects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -13808,7 +11966,6 @@ }, "parameters": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_template_Parameter", @@ -13825,17 +11982,14 @@ }, "os_template_TemplateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "template.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_template_Template", "existingJavaType": "io.fabric8.openshift.api.model.Template" @@ -13843,7 +11997,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TemplateList", "required": true }, @@ -13861,17 +12014,14 @@ }, "os_user_Group": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Group", "required": true }, @@ -13881,10 +12031,8 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -13897,17 +12045,14 @@ }, "os_user_GroupList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_Group", "existingJavaType": "io.fabric8.openshift.api.model.Group" @@ -13915,7 +12060,6 @@ }, "kind": { "type": "string", - "description": "", "default": "GroupList", "required": true }, @@ -13933,26 +12077,21 @@ }, "os_user_Identity": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "extra": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "kind": { "type": "string", - "description": "", "default": "Identity", "required": true }, @@ -13961,12 +12100,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "providerName": { - "type": "string", - "description": "" + "type": "string" }, "providerUserName": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -13982,17 +12119,14 @@ }, "os_user_IdentityList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_Identity", "existingJavaType": "io.fabric8.openshift.api.model.Identity" @@ -14000,7 +12134,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IdentityList", "required": true }, @@ -14018,37 +12151,29 @@ }, "os_user_User": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "fullName": { - "type": "string", - "description": "" + "type": "string" }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "identities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "User", "required": true }, @@ -14066,17 +12191,14 @@ }, "os_user_UserList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_User", "existingJavaType": "io.fabric8.openshift.api.model.User" @@ -14084,7 +12206,6 @@ }, "kind": { "type": "string", - "description": "", "default": "UserList", "required": true }, @@ -14561,36 +12682,28 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14616,7 +12729,6 @@ "properties": { "clusterRoleSelectors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", @@ -14629,8 +12741,7 @@ "allowedflexvolume": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14639,19 +12750,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIGroup", "required": true }, "name": { - "type": "string", - "description": "" + "type": "string" }, "preferredVersion": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", @@ -14659,7 +12767,6 @@ }, "serverAddressByClientCIDRs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ServerAddressByClientCIDR", @@ -14668,7 +12775,6 @@ }, "versions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_GroupVersionForDiscovery", "existingJavaType": "io.fabric8.kubernetes.api.model.GroupVersionForDiscovery" @@ -14681,13 +12787,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "groups": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_APIGroup", "existingJavaType": "io.fabric8.kubernetes.api.model.APIGroup" @@ -14695,7 +12799,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIGroupList", "required": true } @@ -14706,13 +12809,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "APIServer", "required": true }, @@ -14734,8 +12835,7 @@ "apiserverencryption": { "properties": { "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14744,13 +12844,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_APIServer", "existingJavaType": "io.fabric8.openshift.api.model.APIServer" @@ -14758,7 +12856,6 @@ }, "kind": { "type": "string", - "description": "", "default": "APIServerList", "required": true }, @@ -14773,11 +12870,9 @@ "properties": { "names": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "servingCertificate": { @@ -14791,7 +12886,6 @@ "properties": { "namedCertificates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_APIServerNamedServingCert", @@ -14805,11 +12899,9 @@ "properties": { "additionalCORSAllowedOrigins": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "audit": { @@ -14842,13 +12934,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "AppliedClusterResourceQuota", "required": true }, @@ -14871,13 +12961,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_AppliedClusterResourceQuota", "existingJavaType": "io.fabric8.openshift.api.model.AppliedClusterResourceQuota" @@ -14885,7 +12973,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AppliedClusterResourceQuotaList", "required": true }, @@ -14899,8 +12986,7 @@ "audit": { "properties": { "profile": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14908,27 +12994,21 @@ "authinfo": { "properties": { "as": { - "type": "string", - "description": "" + "type": "string" }, "as-groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "as-user-extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" @@ -14938,20 +13018,16 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.AuthProviderConfig" }, "client-certificate": { - "type": "string", - "description": "" + "type": "string" }, "client-certificate-data": { - "type": "string", - "description": "" + "type": "string" }, "client-key": { - "type": "string", - "description": "" + "type": "string" }, "client-key-data": { - "type": "string", - "description": "" + "type": "string" }, "exec": { "$ref": "#/definitions/kubernetes_config_ExecConfig", @@ -14959,7 +13035,6 @@ }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -14967,20 +13042,16 @@ } }, "password": { - "type": "string", - "description": "" + "type": "string" }, "token": { - "type": "string", - "description": "" + "type": "string" }, "tokenFile": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -14989,16 +13060,13 @@ "properties": { "config": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15006,20 +13074,16 @@ "awselasticblockstorevolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15028,7 +13092,6 @@ "properties": { "serviceEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_AWSServiceEndpoint", @@ -15041,12 +13104,10 @@ "awsplatformstatus": { "properties": { "region": { - "type": "string", - "description": "" + "type": "string" }, "serviceEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_AWSServiceEndpoint", @@ -15059,12 +13120,10 @@ "awsserviceendpoint": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15072,28 +13131,22 @@ "azurediskvolumesource": { "properties": { "cachingMode": { - "type": "string", - "description": "" + "type": "string" }, "diskName": { - "type": "string", - "description": "" + "type": "string" }, "diskURI": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -15101,16 +13154,13 @@ "azurefilevolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "shareName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15121,16 +13171,13 @@ "azureplatformstatus": { "properties": { "cloudName": { - "type": "string", - "description": "" + "type": "string" }, "networkResourceGroupName": { - "type": "string", - "description": "" + "type": "string" }, "resourceGroupName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15141,16 +13188,13 @@ "baremetalplatformstatus": { "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15170,8 +13214,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15179,8 +13222,7 @@ "binarybuildsource": { "properties": { "asFile": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15192,8 +13234,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15202,13 +13243,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Build", "required": true }, @@ -15238,20 +13277,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15260,13 +13295,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "BuildConfig", "required": true }, @@ -15289,13 +13322,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_build_BuildConfig", "existingJavaType": "io.fabric8.openshift.api.model.BuildConfig" @@ -15303,7 +13334,6 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildConfigList", "required": true }, @@ -15318,19 +13348,15 @@ "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "failedBuildsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -15351,12 +13377,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "runPolicy": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -15367,12 +13391,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.BuildStrategy" }, "successfulBuildsHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "triggers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerPolicy", @@ -15386,7 +13408,6 @@ "properties": { "lastVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -15396,13 +13417,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_build_Build", "existingJavaType": "io.fabric8.openshift.api.model.Build" @@ -15410,7 +13429,6 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildList", "required": true }, @@ -15425,7 +13443,6 @@ "properties": { "imageLabels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageLabel", @@ -15447,25 +13464,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "script": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15474,7 +13486,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "build.openshift.io/v1", "required": true }, @@ -15488,7 +13499,6 @@ }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -15501,13 +13511,11 @@ }, "kind": { "type": "string", - "description": "", "default": "BuildRequest", "required": true }, "lastVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "metadata": { @@ -15524,7 +13532,6 @@ }, "triggeredBy": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerCause", @@ -15546,7 +13553,6 @@ }, "configMaps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ConfigMapBuildSource", @@ -15554,12 +13560,10 @@ } }, "contextDir": { - "type": "string", - "description": "" + "type": "string" }, "dockerfile": { - "type": "string", - "description": "" + "type": "string" }, "git": { "$ref": "#/definitions/os_build_GitBuildSource", @@ -15567,7 +13571,6 @@ }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageSource", @@ -15576,7 +13579,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_SecretBuildSource", @@ -15588,8 +13590,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15598,15 +13599,12 @@ "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -15627,8 +13625,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -15640,7 +13637,6 @@ }, "triggeredBy": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildTriggerCause", @@ -15653,8 +13649,7 @@ "buildstatus": { "properties": { "cancelled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "completionTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -15662,7 +13657,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_BuildCondition", @@ -15675,36 +13669,29 @@ }, "duration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "logSnippet": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "output": { "$ref": "#/definitions/os_build_BuildStatusOutput", "existingJavaType": "io.fabric8.openshift.api.model.BuildStatusOutput" }, "outputDockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "stages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_StageInfo", @@ -15730,8 +13717,7 @@ "buildstatusoutputto": { "properties": { "imageDigest": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15755,8 +13741,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceBuildStrategy" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15784,8 +13769,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.ImageChangeCause" }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15813,8 +13797,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.ImageChangeTrigger" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15823,20 +13806,16 @@ "properties": { "add": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "drop": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -15846,31 +13825,25 @@ "properties": { "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretFile": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15878,20 +13851,17 @@ "cindervolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15899,16 +13869,13 @@ "cluster": { "properties": { "certificate-authority": { - "type": "string", - "description": "" + "type": "string" }, "certificate-authority-data": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -15916,20 +13883,16 @@ } }, "insecure-skip-tls-verify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "proxy-url": { - "type": "string", - "description": "" + "type": "string" }, "server": { - "type": "string", - "description": "" + "type": "string" }, "tls-server-name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -15938,25 +13901,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "clusterNetworks": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_ClusterNetworkEntry", "existingJavaType": "io.fabric8.openshift.api.model.ClusterNetworkEntry" } }, "hostsubnetlength": { - "type": "integer", - "description": "" + "type": "integer" }, "kind": { "type": "string", - "description": "", "default": "ClusterNetwork", "required": true }, @@ -15965,24 +13924,19 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "mtu": { - "type": "integer", - "description": "" + "type": "integer" }, "network": { - "type": "string", - "description": "" + "type": "string" }, "pluginName": { - "type": "string", - "description": "" + "type": "string" }, "serviceNetwork": { - "type": "string", - "description": "" + "type": "string" }, "vxlanPort": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -15990,12 +13944,10 @@ "clusternetworkentry": { "properties": { "CIDR": { - "type": "string", - "description": "" + "type": "string" }, "hostSubnetLength": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -16004,13 +13956,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_ClusterNetwork", "existingJavaType": "io.fabric8.openshift.api.model.ClusterNetwork" @@ -16018,7 +13968,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterNetworkList", "required": true }, @@ -16033,13 +13982,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterOperator", "required": true }, @@ -16062,13 +14009,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_ClusterOperator", "existingJavaType": "io.fabric8.openshift.api.model.ClusterOperator" @@ -16076,7 +14021,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterOperatorList", "required": true }, @@ -16094,7 +14038,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ClusterOperatorStatusCondition", @@ -16107,7 +14050,6 @@ }, "relatedObjects": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ObjectReference", @@ -16116,7 +14058,6 @@ }, "versions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_OperandVersion", @@ -16133,20 +14074,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16155,13 +14092,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterResourceQuota", "required": true }, @@ -16184,13 +14119,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "quota.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_ClusterResourceQuota", "existingJavaType": "io.fabric8.openshift.api.model.ClusterResourceQuota" @@ -16198,7 +14131,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterResourceQuotaList", "required": true }, @@ -16213,10 +14145,8 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -16244,7 +14174,6 @@ "properties": { "namespaces": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_quota_ResourceQuotaStatusByNamespace", "existingJavaType": "io.fabric8.openshift.api.model.ResourceQuotaStatusByNamespace" @@ -16265,13 +14194,11 @@ }, "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterRole", "required": true }, @@ -16281,7 +14208,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -16294,21 +14220,17 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "groupNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBinding", "required": true }, @@ -16322,7 +14244,6 @@ }, "subjects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -16330,10 +14251,8 @@ }, "userNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -16343,13 +14262,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ClusterRoleBinding", "existingJavaType": "io.fabric8.openshift.api.model.ClusterRoleBinding" @@ -16357,7 +14274,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleBindingList", "required": true }, @@ -16372,13 +14288,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ClusterRole", "existingJavaType": "io.fabric8.openshift.api.model.ClusterRole" @@ -16386,7 +14300,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterRoleList", "required": true }, @@ -16400,23 +14313,18 @@ "clusterrolescoperestriction": { "properties": { "allowEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "namespaces": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "roleNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -16426,13 +14334,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterVersion", "required": true }, @@ -16455,13 +14361,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_ClusterVersion", "existingJavaType": "io.fabric8.openshift.api.model.ClusterVersion" @@ -16469,7 +14373,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterVersionList", "required": true }, @@ -16483,12 +14386,10 @@ "clusterversionspec": { "properties": { "channel": { - "type": "string", - "description": "" + "type": "string" }, "clusterID": { - "type": "string", - "description": "" + "type": "string" }, "desiredUpdate": { "$ref": "#/definitions/os_config_Update", @@ -16496,7 +14397,6 @@ }, "overrides": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ComponentOverride", @@ -16504,8 +14404,7 @@ } }, "upstream": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16514,7 +14413,6 @@ "properties": { "availableUpdates": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Release", "existingJavaType": "io.fabric8.openshift.api.model.Release" @@ -16522,7 +14420,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_ClusterOperatorStatusCondition", @@ -16535,7 +14432,6 @@ }, "history": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_UpdateHistory", @@ -16544,12 +14440,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "versionHash": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16558,15 +14452,12 @@ "properties": { "completionDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -16587,8 +14478,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/os_build_BuildSource", @@ -16608,8 +14498,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16617,24 +14506,19 @@ "componentoverride": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "unmanaged": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -16642,12 +14526,10 @@ "config": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "clusters": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedCluster", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedCluster" @@ -16655,19 +14537,16 @@ }, "contexts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedContext", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedContext" } }, "current-context": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -16675,8 +14554,7 @@ } }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "preferences": { "$ref": "#/definitions/kubernetes_config_Preferences", @@ -16684,7 +14562,6 @@ }, "users": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_NamedAuthInfo", "existingJavaType": "io.fabric8.kubernetes.api.model.NamedAuthInfo" @@ -16700,8 +14577,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "destinationDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16709,12 +14585,10 @@ "configmapenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -16722,12 +14596,10 @@ "configmapfilereference": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16735,16 +14607,13 @@ "configmapkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -16752,8 +14621,7 @@ "configmapnamereference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16762,7 +14630,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -16770,12 +14637,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -16783,12 +14648,10 @@ "configmapvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -16796,12 +14659,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -16810,25 +14671,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -16837,7 +14693,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -16845,12 +14700,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -16862,13 +14715,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -16892,28 +14743,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -16922,7 +14767,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -16930,8 +14774,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16939,26 +14782,21 @@ "containerport": { "properties": { "containerPort": { - "type": "integer", - "description": "" + "type": "integer" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "hostPort": { - "type": "integer", - "description": "" + "type": "integer" }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "protocol": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16966,12 +14804,10 @@ "context": { "properties": { "cluster": { - "type": "string", - "description": "" + "type": "string" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -16979,12 +14815,10 @@ } }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -16993,26 +14827,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "CreateOptions", "required": true } @@ -17022,27 +14851,22 @@ "csivolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeAttributes": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -17052,12 +14876,10 @@ "custombuildstrategy": { "properties": { "buildAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -17065,12 +14887,10 @@ } }, "exposeDockerSocket": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -17082,7 +14902,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_SecretSpec", @@ -17096,16 +14915,13 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "environment": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -17113,8 +14929,7 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17123,20 +14938,16 @@ "properties": { "disabled": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "enabled": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -17146,15 +14957,12 @@ "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17163,41 +14971,34 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "gracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "DeleteOptions", "required": true }, "orphanDependents": { - "type": "boolean", - "description": "" + "type": "boolean" }, "preconditions": { "$ref": "#/definitions/kubernetes_apimachinery_Preconditions", "existingJavaType": "io.fabric8.kubernetes.api.model.Preconditions" }, "propagationPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17209,8 +15010,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.DeploymentCauseImageTrigger" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17235,20 +15035,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17257,13 +15053,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "DeploymentConfig", "required": true }, @@ -17286,13 +15080,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "apps.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentConfig", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentConfig" @@ -17300,7 +15092,6 @@ }, "kind": { "type": "string", - "description": "", "default": "DeploymentConfigList", "required": true }, @@ -17314,27 +15105,21 @@ "deploymentconfigspec": { "properties": { "minReadySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "revisionHistoryLimit": { - "type": "integer", - "description": "" + "type": "integer" }, "selector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -17347,12 +15132,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "test": { - "type": "boolean", - "description": "" + "type": "boolean" }, "triggers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentTriggerPolicy", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentTriggerPolicy" @@ -17364,12 +15147,10 @@ "deploymentconfigstatus": { "properties": { "availableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_deploy_DeploymentCondition", @@ -17382,29 +15163,23 @@ }, "latestVersion": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "readyReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "replicas": { - "type": "integer", - "description": "" + "type": "integer" }, "unavailableReplicas": { - "type": "integer", - "description": "" + "type": "integer" }, "updatedReplicas": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -17413,15 +15188,13 @@ "properties": { "causes": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_deploy_DeploymentCause", "existingJavaType": "io.fabric8.openshift.api.model.DeploymentCause" } }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17430,15 +15203,12 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -17448,10 +15218,8 @@ }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -17468,8 +15236,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RollingDeploymentStrategyParams" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17477,16 +15244,13 @@ "deploymenttriggerimagechangeparams": { "properties": { "automatic": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containerNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "from": { @@ -17494,8 +15258,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "lastTriggeredImage": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17507,8 +15270,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.DeploymentTriggerImageChangeParams" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17516,15 +15278,12 @@ "dnszone": { "properties": { "id": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -17535,7 +15294,6 @@ "properties": { "buildArgs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -17543,12 +15301,10 @@ } }, "dockerfilePath": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -17556,20 +15312,17 @@ } }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "imageOptimizationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "noCache": { - "type": "boolean", - "description": "" + "type": "boolean" }, "pullSecret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -17582,7 +15335,6 @@ "properties": { "buildArgs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -17590,8 +15342,7 @@ } }, "noCache": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -17600,7 +15351,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -17617,12 +15367,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectFieldSelector" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/kubernetes_core_ResourceFieldSelector", @@ -17634,12 +15382,10 @@ "downwardapivolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_DownwardAPIVolumeFile", @@ -17653,7 +15399,6 @@ "properties": { "Duration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -17663,13 +15408,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EgressNetworkPolicy", "required": true }, @@ -17688,13 +15431,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_EgressNetworkPolicy", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicy" @@ -17702,7 +15443,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EgressNetworkPolicyList", "required": true }, @@ -17716,12 +15456,10 @@ "egressnetworkpolicypeer": { "properties": { "cidrSelector": { - "type": "string", - "description": "" + "type": "string" }, "dnsName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17733,8 +15471,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicyPeer" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17743,7 +15480,6 @@ "properties": { "egress": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_EgressNetworkPolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.EgressNetworkPolicyRule" @@ -17755,8 +15491,7 @@ "emptydirvolumesource": { "properties": { "medium": { - "type": "string", - "description": "" + "type": "string" }, "sizeLimit": { "$ref": "#/definitions/kubernetes_resource_Quantity", @@ -17772,8 +15507,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapEnvSource" }, "prefix": { - "type": "string", - "description": "" + "type": "string" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_SecretEnvSource", @@ -17786,12 +15520,10 @@ "properties": { "name": { "type": "string", - "description": "", "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "valueFrom": { "$ref": "#/definitions/kubernetes_core_EnvVarSource", @@ -17825,25 +15557,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -17852,7 +15579,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -17860,12 +15586,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -17876,12 +15600,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -17905,32 +15627,25 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetContainerName": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -17939,7 +15654,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -17947,8 +15661,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -17957,25 +15670,20 @@ "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -17984,7 +15692,6 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvFromSource", @@ -17992,12 +15699,10 @@ } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "$ref": "#/definitions/kubernetes_core_Lifecycle", @@ -18008,12 +15713,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ContainerPort", @@ -18037,28 +15740,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeDevice", @@ -18067,7 +15764,6 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_VolumeMount", @@ -18075,8 +15771,7 @@ } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18084,8 +15779,7 @@ "ephemeralvolumesource": { "properties": { "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeClaimTemplate": { "$ref": "#/definitions/kubernetes_core_PersistentVolumeClaimTemplate", @@ -18098,11 +15792,9 @@ "properties": { "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -18111,32 +15803,26 @@ "execconfig": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "args": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_config_ExecEnvVar", "existingJavaType": "io.fabric8.kubernetes.api.model.ExecEnvVar" } }, "installHint": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18144,12 +15830,10 @@ "execenvvar": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18158,19 +15842,15 @@ "properties": { "command": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "containerName": { - "type": "string", - "description": "" + "type": "string" }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -18179,11 +15859,9 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -18192,33 +15870,26 @@ "fcvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetWWNs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "wwids": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -18228,13 +15899,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "FeatureGate", "required": true }, @@ -18257,13 +15926,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_FeatureGate", "existingJavaType": "io.fabric8.openshift.api.model.FeatureGate" @@ -18271,7 +15938,6 @@ }, "kind": { "type": "string", - "description": "", "default": "FeatureGateList", "required": true }, @@ -18289,8 +15955,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.CustomFeatureGates" }, "featureSet": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18302,8 +15967,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.CustomFeatureGates" }, "featureSet": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18317,25 +15981,20 @@ "flexvolumesource": { "properties": { "driver": { - "type": "string", - "description": "" + "type": "string" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "options": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -18347,12 +16006,10 @@ "flockervolumesource": { "properties": { "datasetName": { - "type": "string", - "description": "" + "type": "string" }, "datasetUUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18361,7 +16018,6 @@ "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_IDRange", @@ -18369,8 +16025,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18378,20 +16033,16 @@ "gcepersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "partition": { - "type": "integer", - "description": "" + "type": "integer" }, "pdName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -18402,12 +16053,10 @@ "gcpplatformstatus": { "properties": { "projectID": { - "type": "string", - "description": "" + "type": "string" }, "region": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18419,8 +16068,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18429,19 +16077,16 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GetOptions", "required": true }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18449,24 +16094,19 @@ "gitbuildsource": { "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" }, "ref": { - "type": "string", - "description": "" + "type": "string" }, "uri": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18478,33 +16118,27 @@ "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "organizations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "teams": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -18517,8 +16151,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18530,16 +16163,14 @@ "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18551,8 +16182,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceRevision" }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18560,16 +16190,13 @@ "gitrepovolumesource": { "properties": { "directory": { - "type": "string", - "description": "" + "type": "string" }, "repository": { - "type": "string", - "description": "" + "type": "string" }, "revision": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18581,16 +16208,14 @@ "existingJavaType": "io.fabric8.openshift.api.model.SourceControlUser" }, "commit": { - "type": "string", - "description": "" + "type": "string" }, "committer": { "$ref": "#/definitions/os_build_SourceControlUser", "existingJavaType": "io.fabric8.openshift.api.model.SourceControlUser" }, "message": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18598,16 +16223,13 @@ "glusterfsvolumesource": { "properties": { "endpoints": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -18615,16 +16237,14 @@ "googleidentityprovider": { "properties": { "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "hostedDomain": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18633,13 +16253,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Group", "required": true }, @@ -18649,10 +16267,8 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -18662,13 +16278,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_Group", "existingJavaType": "io.fabric8.openshift.api.model.Group" @@ -18676,7 +16290,6 @@ }, "kind": { "type": "string", - "description": "", "default": "GroupList", "required": true }, @@ -18691,15 +16304,12 @@ "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -18711,12 +16321,10 @@ "groupversionfordiscovery": { "properties": { "groupVersion": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18742,16 +16350,13 @@ "properties": { "hostnames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "ip": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18759,12 +16364,10 @@ "hostpathvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18781,12 +16384,10 @@ "httpgetaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "httpHeaders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HTTPHeader", @@ -18794,16 +16395,14 @@ } }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", "existingJavaType": "io.fabric8.kubernetes.api.model.IntOrString" }, "scheme": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18811,12 +16410,10 @@ "httpheader": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18824,12 +16421,10 @@ "hubsource": { "properties": { "disabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18837,20 +16432,16 @@ "hubsourcestatus": { "properties": { "disabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18861,16 +16452,13 @@ "ibmcloudplatformstatus": { "properties": { "location": { - "type": "string", - "description": "" + "type": "string" }, "providerType": { - "type": "string", - "description": "" + "type": "string" }, "resourceGroupName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -18879,22 +16467,18 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "extra": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "kind": { "type": "string", - "description": "", "default": "Identity", "required": true }, @@ -18903,12 +16487,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "providerName": { - "type": "string", - "description": "" + "type": "string" }, "providerUserName": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -18921,13 +16503,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_Identity", "existingJavaType": "io.fabric8.openshift.api.model.Identity" @@ -18935,7 +16515,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IdentityList", "required": true }, @@ -18977,12 +16556,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.LDAPIdentityProvider" }, "mappingMethod": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "openID": { "$ref": "#/definitions/os_config_OpenIDIdentityProvider", @@ -18993,8 +16570,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RequestHeaderIdentityProvider" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19038,8 +16614,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RequestHeaderIdentityProvider" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19048,12 +16623,10 @@ "properties": { "max": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "min": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -19063,54 +16636,44 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "dockerImageConfig": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageLayers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageLayer", "existingJavaType": "io.fabric8.openshift.api.model.ImageLayer" } }, "dockerImageManifest": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageManifestMediaType": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageMetadata": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_ImageRawExtension", "javaType": "io.fabric8.kubernetes.api.model.runtime.RawExtension" }, "dockerImageMetadataVersion": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "dockerImageSignatures": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "Image", "required": true }, @@ -19120,7 +16683,6 @@ }, "signatures": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageSignature", @@ -19137,8 +16699,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "imageID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19150,12 +16711,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "lastTriggeredImageID": { - "type": "string", - "description": "" + "type": "string" }, "paused": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -19171,8 +16730,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "includeManifest": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -19196,8 +16754,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Status" }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19205,12 +16762,10 @@ "imagelabel": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19218,16 +16773,13 @@ "imagelayer": { "properties": { "mediaType": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "size": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -19237,13 +16789,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_Image", "existingJavaType": "io.fabric8.openshift.api.model.Image" @@ -19251,7 +16801,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageList", "required": true }, @@ -19265,8 +16814,7 @@ "imagelookuppolicy": { "properties": { "local": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -19278,13 +16826,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_SignatureCondition", @@ -19292,16 +16838,14 @@ } }, "content": { - "type": "string", - "description": "" + "type": "string" }, "created": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "imageIdentity": { - "type": "string", - "description": "" + "type": "string" }, "issuedBy": { "$ref": "#/definitions/os_image_SignatureIssuer", @@ -19313,7 +16857,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageSignature", "required": true }, @@ -19323,16 +16866,13 @@ }, "signedClaims": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19341,11 +16881,9 @@ "properties": { "as": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "from": { @@ -19354,7 +16892,6 @@ }, "paths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_ImageSourcePath", @@ -19371,12 +16908,10 @@ "imagesourcepath": { "properties": { "destinationDir": { - "type": "string", - "description": "" + "type": "string" }, "sourcePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19385,13 +16920,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageStream", "required": true }, @@ -19414,7 +16947,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -19424,7 +16956,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamImage", "required": true }, @@ -19439,13 +16970,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ImageStreamImport", "required": true }, @@ -19468,7 +16997,6 @@ "properties": { "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportSpec", @@ -19476,8 +17004,7 @@ } }, "import": { - "type": "boolean", - "description": "" + "type": "boolean" }, "repository": { "$ref": "#/definitions/os_image_RepositoryImportSpec", @@ -19490,7 +17017,6 @@ "properties": { "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportStatus", @@ -19512,13 +17038,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageStream", "existingJavaType": "io.fabric8.openshift.api.model.ImageStream" @@ -19526,7 +17050,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamList", "required": true }, @@ -19541,7 +17064,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -19551,7 +17073,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamMapping", "required": true }, @@ -19560,8 +17081,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19569,8 +17089,7 @@ "imagestreamspec": { "properties": { "dockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "lookupPolicy": { "$ref": "#/definitions/os_image_ImageLookupPolicy", @@ -19578,7 +17097,6 @@ }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagReference", @@ -19591,16 +17109,13 @@ "imagestreamstatus": { "properties": { "dockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "publicDockerImageRepository": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_NamedTagEventList", @@ -19614,13 +17129,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagEventCondition", @@ -19629,7 +17142,6 @@ }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "image": { @@ -19638,7 +17150,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamTag", "required": true }, @@ -19661,13 +17172,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageStreamTag", "existingJavaType": "io.fabric8.openshift.api.model.ImageStreamTag" @@ -19675,7 +17184,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageStreamTagList", "required": true }, @@ -19690,7 +17198,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, @@ -19700,7 +17207,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageTag", "required": true }, @@ -19723,13 +17229,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "image.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_ImageTag", "existingJavaType": "io.fabric8.openshift.api.model.ImageTag" @@ -19737,7 +17241,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ImageTagList", "required": true }, @@ -19751,40 +17254,31 @@ "info": { "properties": { "buildDate": { - "type": "string", - "description": "" + "type": "string" }, "compiler": { - "type": "string", - "description": "" + "type": "string" }, "gitCommit": { - "type": "string", - "description": "" + "type": "string" }, "gitTreeState": { - "type": "string", - "description": "" + "type": "string" }, "gitVersion": { - "type": "string", - "description": "" + "type": "string" }, "goVersion": { - "type": "string", - "description": "" + "type": "string" }, "major": { - "type": "string", - "description": "" + "type": "string" }, "minor": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19793,13 +17287,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Infrastructure", "required": true }, @@ -19822,13 +17314,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Infrastructure", "existingJavaType": "io.fabric8.openshift.api.model.Infrastructure" @@ -19836,7 +17326,6 @@ }, "kind": { "type": "string", - "description": "", "default": "InfrastructureList", "required": true }, @@ -19863,24 +17352,19 @@ "infrastructurestatus": { "properties": { "apiServerInternalURI": { - "type": "string", - "description": "" + "type": "string" }, "apiServerURL": { - "type": "string", - "description": "" + "type": "string" }, "etcdDiscoveryDomain": { - "type": "string", - "description": "" + "type": "string" }, "infrastructureName": { - "type": "string", - "description": "" + "type": "string" }, "platform": { - "type": "string", - "description": "" + "type": "string" }, "platformStatus": { "$ref": "#/definitions/os_config_PlatformStatus", @@ -19895,16 +17379,13 @@ "intorstring": { "properties": { "IntVal": { - "type": "integer", - "description": "" + "type": "integer" }, "StrVal": { - "type": "string", - "description": "" + "type": "string" }, "Type": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -19913,53 +17394,42 @@ "iscsivolumesource": { "properties": { "chapAuthDiscovery": { - "type": "boolean", - "description": "" + "type": "boolean" }, "chapAuthSession": { - "type": "boolean", - "description": "" + "type": "boolean" }, "fsType": { - "type": "string", - "description": "" + "type": "string" }, "initiatorName": { - "type": "string", - "description": "" + "type": "string" }, "iqn": { - "type": "string", - "description": "" + "type": "string" }, "iscsiInterface": { - "type": "string", - "description": "" + "type": "string" }, "lun": { - "type": "integer", - "description": "" + "type": "integer" }, "portals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "targetPortal": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19968,7 +17438,6 @@ "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -19976,12 +17445,10 @@ } }, "jenkinsfile": { - "type": "string", - "description": "" + "type": "string" }, "jenkinsfilePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -19993,8 +17460,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "domainName": { - "type": "string", - "description": "" + "type": "string" }, "tlsClientCert": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -20005,8 +17471,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20014,16 +17479,13 @@ "keytopath": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "mode": { - "type": "integer", - "description": "" + "type": "integer" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20032,7 +17494,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelectorRequirement", @@ -20041,10 +17502,8 @@ }, "matchLabels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" } @@ -20054,20 +17513,16 @@ "labelselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -20077,37 +17532,29 @@ "properties": { "email": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "id": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsername": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -20120,8 +17567,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.LDAPAttributeMapping" }, "bindDN": { - "type": "string", - "description": "" + "type": "string" }, "bindPassword": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -20132,12 +17578,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "insecure": { - "type": "boolean", - "description": "" + "type": "boolean" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20162,12 +17606,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.ExecNewPodHook" }, "failurePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tagImages": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_deploy_TagImageHook", @@ -20181,13 +17623,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -20195,7 +17635,6 @@ }, "kind": { "type": "string", - "description": "", "default": "List", "required": true }, @@ -20209,21 +17648,17 @@ "listmeta": { "properties": { "continue": { - "type": "string", - "description": "" + "type": "string" }, "remainingItemCount": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20231,54 +17666,43 @@ "listoptions": { "properties": { "allowWatchBookmarks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "continue": { - "type": "string", - "description": "" + "type": "string" }, "fieldSelector": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ListOptions", "required": true }, "labelSelector": { - "type": "string", - "description": "" + "type": "string" }, "limit": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceVersionMatch": { - "type": "string", - "description": "" + "type": "string" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "watch": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -20286,8 +17710,7 @@ "localobjectreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20296,7 +17719,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -20305,42 +17727,33 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "LocalResourceAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20349,7 +17762,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -20359,61 +17771,47 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "LocalSubjectAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20421,24 +17819,20 @@ "managedfieldsentry": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldsType": { - "type": "string", - "description": "" + "type": "string" }, "fieldsV1": { "$ref": "#/definitions/kubernetes_apimachinery_FieldsV1", "existingJavaType": "io.fabric8.kubernetes.api.model.FieldsV1" }, "manager": { - "type": "string", - "description": "" + "type": "string" }, "operation": { - "type": "string", - "description": "" + "type": "string" }, "time": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -20453,8 +17847,7 @@ "namedauthinfo": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_config_AuthInfo", @@ -20470,8 +17863,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Cluster" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20483,8 +17875,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Context" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20496,8 +17887,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20506,7 +17896,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_TagEventCondition", @@ -20515,15 +17904,13 @@ }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_image_TagEvent", "existingJavaType": "io.fabric8.openshift.api.model.TagEvent" } }, "tag": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20535,20 +17922,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20557,22 +17940,18 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "egressIPs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "NetNamespace", "required": true }, @@ -20581,12 +17960,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "netid": { - "type": "integer", - "description": "" + "type": "integer" }, "netname": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20595,13 +17972,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "network.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_network_NetNamespace", "existingJavaType": "io.fabric8.openshift.api.model.NetNamespace" @@ -20609,7 +17984,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetNamespaceList", "required": true }, @@ -20623,16 +17997,13 @@ "nfsvolumesource": { "properties": { "path": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "server": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20641,7 +18012,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PreferredSchedulingTerm", @@ -20659,7 +18029,6 @@ "properties": { "nodeSelectorTerms": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorTerm", "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" @@ -20671,20 +18040,16 @@ "nodeselectorrequirement": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -20694,7 +18059,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -20703,7 +18067,6 @@ }, "matchFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NodeSelectorRequirement", @@ -20717,13 +18080,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OAuth", "required": true }, @@ -20746,30 +18107,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "authorizeToken": { - "type": "string", - "description": "" + "type": "string" }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "expiresIn": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "inactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "kind": { "type": "string", - "description": "", "default": "OAuthAccessToken", "required": true }, @@ -20778,29 +18133,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "redirectURI": { - "type": "string", - "description": "" + "type": "string" }, "refreshToken": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20809,13 +18158,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthAccessToken", "existingJavaType": "io.fabric8.openshift.api.model.OAuthAccessToken" @@ -20823,7 +18170,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthAccessTokenList", "required": true }, @@ -20838,30 +18184,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "codeChallenge": { - "type": "string", - "description": "" + "type": "string" }, "codeChallengeMethod": { - "type": "string", - "description": "" + "type": "string" }, "expiresIn": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "default": "OAuthAuthorizeToken", "required": true }, @@ -20870,29 +18210,23 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "redirectURI": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "state": { - "type": "string", - "description": "" + "type": "string" }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20901,13 +18235,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthAuthorizeToken", "existingJavaType": "io.fabric8.openshift.api.model.OAuthAuthorizeToken" @@ -20915,7 +18247,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthAuthorizeTokenList", "required": true }, @@ -20929,35 +18260,28 @@ "oauthclient": { "properties": { "accessTokenInactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "accessTokenMaxAgeSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "additionalSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "grantMethod": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "OAuthClient", "required": true }, @@ -20967,20 +18291,16 @@ }, "redirectURIs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "respondWithChallenges": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scopeRestrictions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_oauth_ScopeRestriction", @@ -20988,8 +18308,7 @@ } }, "secret": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -20998,17 +18317,14 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "clientName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "OAuthClientAuthorization", "required": true }, @@ -21018,20 +18334,16 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "userName": { - "type": "string", - "description": "" + "type": "string" }, "userUID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21040,13 +18352,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthClientAuthorization", "existingJavaType": "io.fabric8.openshift.api.model.OAuthClientAuthorization" @@ -21054,7 +18364,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthClientAuthorizationList", "required": true }, @@ -21069,13 +18378,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "oauth.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_oauth_OAuthClient", "existingJavaType": "io.fabric8.openshift.api.model.OAuthClient" @@ -21083,7 +18390,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthClientList", "required": true }, @@ -21098,13 +18404,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_OAuth", "existingJavaType": "io.fabric8.openshift.api.model.OAuth" @@ -21112,7 +18416,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OAuthList", "required": true }, @@ -21138,8 +18441,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.SecretNameReference" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21148,7 +18450,6 @@ "properties": { "identityProviders": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_IdentityProvider", @@ -21189,12 +18490,10 @@ "objectfieldselector": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "fieldPath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21203,16 +18502,13 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "clusterName": { - "type": "string", - "description": "" + "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -21220,7 +18516,6 @@ }, "deletionGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "deletionTimestamp": { @@ -21229,34 +18524,27 @@ }, "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "generateName": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "managedFields": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_ManagedFieldsEntry", @@ -21264,18 +18552,15 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { "type": "string", - "description": "", "maxLength": 253, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$" }, "ownerReferences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_OwnerReference", @@ -21283,49 +18568,30 @@ } }, "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "selfLink": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true }, "objectreference": { "properties": { - "apiVersion": { - "type": "string", - "description": "" - }, - "fieldPath": { - "type": "string", - "description": "" - }, - "kind": { - "type": "string", - "description": "" + "group": { + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" - }, - "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, - "uid": { - "type": "string", - "description": "" + "resource": { + "type": "string" } }, "additionalProperties": true @@ -21337,29 +18603,23 @@ "properties": { "email": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsername": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -21376,8 +18636,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OpenIDClaims" }, "clientID": { - "type": "string", - "description": "" + "type": "string" }, "clientSecret": { "$ref": "#/definitions/os_config_SecretNameReference", @@ -21385,25 +18644,20 @@ }, "extraAuthorizeParameters": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "extraScopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "issuer": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21414,20 +18668,16 @@ "openstackplatformstatus": { "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "cloudName": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21435,12 +18685,10 @@ "operandversion": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21449,13 +18697,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "OperatorHub", "required": true }, @@ -21478,13 +18724,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_OperatorHub", "existingJavaType": "io.fabric8.openshift.api.model.OperatorHub" @@ -21492,7 +18736,6 @@ }, "kind": { "type": "string", - "description": "", "default": "OperatorHubList", "required": true }, @@ -21506,12 +18749,10 @@ "operatorhubspec": { "properties": { "disableAllDefaultSources": { - "type": "boolean", - "description": "" + "type": "boolean" }, "sources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_HubSource", @@ -21525,7 +18766,6 @@ "properties": { "sources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_config_HubSourceStatus", @@ -21541,16 +18781,13 @@ "ovirtplatformstatus": { "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21558,28 +18795,22 @@ "ownerreference": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "blockOwnerDeletion": { - "type": "boolean", - "description": "" + "type": "boolean" }, "controller": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21587,32 +18818,25 @@ "parameter": { "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "from": { - "type": "string", - "description": "" + "type": "string" }, "generate": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "required": { - "type": "boolean", - "description": "" + "type": "boolean" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21624,30 +18848,24 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "PatchOptions", "required": true } @@ -21658,11 +18876,9 @@ "properties": { "accessModes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "dataSource": { @@ -21678,16 +18894,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "storageClassName": { - "type": "string", - "description": "" + "type": "string" }, "volumeMode": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21708,12 +18921,10 @@ "persistentvolumeclaimvolumesource": { "properties": { "claimName": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -21721,12 +18932,10 @@ "photonpersistentdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "pdID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21762,8 +18971,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OvirtPlatformSpec" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "vsphere": { "$ref": "#/definitions/os_config_VSpherePlatformSpec", @@ -21803,8 +19011,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OvirtPlatformStatus" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "vsphere": { "$ref": "#/definitions/os_config_VSpherePlatformStatus", @@ -21817,7 +19024,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -21826,7 +19032,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -21844,16 +19049,13 @@ }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21862,7 +19064,6 @@ "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_WeightedPodAffinityTerm", @@ -21871,7 +19072,6 @@ }, "requiredDuringSchedulingIgnoredDuringExecution": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodAffinityTerm", @@ -21885,16 +19085,13 @@ "properties": { "nameservers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodDNSConfigOption", @@ -21903,11 +19100,9 @@ }, "searches": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -21916,12 +19111,10 @@ "poddnsconfigoption": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21929,8 +19122,7 @@ "podreadinessgate": { "properties": { "conditionType": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -21939,25 +19131,20 @@ "properties": { "fsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "fsGroupChangePolicy": { - "type": "string", - "description": "" + "type": "string" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -21970,17 +19157,14 @@ }, "supplementalGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, "sysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Sysctl", @@ -21998,13 +19182,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicyReview", "required": true }, @@ -22023,11 +19205,9 @@ "properties": { "serviceAccountNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "template": { @@ -22041,7 +19221,6 @@ "properties": { "allowedServiceAccounts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_ServiceAccountPodSecurityPolicyReviewStatus", "existingJavaType": "io.fabric8.openshift.api.model.ServiceAccountPodSecurityPolicyReviewStatus" @@ -22054,13 +19233,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicySelfSubjectReview", "required": true }, @@ -22088,13 +19265,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodSecurityPolicySubjectReview", "required": true }, @@ -22113,11 +19288,9 @@ "properties": { "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "template": { @@ -22125,8 +19298,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodTemplateSpec" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22138,8 +19310,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -22152,7 +19323,6 @@ "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -22160,12 +19330,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { - "type": "boolean", - "description": "" + "type": "boolean" }, "containers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_Container", "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -22176,16 +19344,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { - "type": "boolean", - "description": "" + "type": "boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EphemeralContainer", @@ -22194,7 +19359,6 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_HostAlias", @@ -22202,24 +19366,19 @@ } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -22228,7 +19387,6 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Container", @@ -22236,21 +19394,17 @@ } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "overhead": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -22258,20 +19412,16 @@ "existingJavaType": "java.util.Map\u003cString, io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_PodReadinessGate", @@ -22279,49 +19429,39 @@ } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { - "type": "string", - "description": "" + "type": "string" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "$ref": "#/definitions/kubernetes_core_PodSecurityContext", "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "setHostnameAsFQDN": { - "type": "boolean", - "description": "" + "type": "boolean" }, "shareProcessNamespace": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Toleration", @@ -22330,7 +19470,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_TopologySpreadConstraint", @@ -22339,7 +19478,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_Volume", @@ -22366,11 +19504,9 @@ "properties": { "apiGroups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "attributeRestrictions": { @@ -22379,36 +19515,28 @@ }, "nonResourceURLs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resources": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "verbs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -22417,16 +19545,13 @@ "portworxvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22434,12 +19559,10 @@ "preconditions": { "properties": { "resourceVersion": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22447,12 +19570,10 @@ "preferences": { "properties": { "colors": { - "type": "boolean", - "description": "" + "type": "boolean" }, "extensions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_config_NamedExtension", @@ -22469,8 +19590,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.NodeSelectorTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -22482,32 +19602,27 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ExecAction" }, "failureThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "httpGet": { "$ref": "#/definitions/kubernetes_core_HTTPGetAction", "existingJavaType": "io.fabric8.kubernetes.api.model.HTTPGetAction" }, "initialDelaySeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "periodSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "successThreshold": { - "type": "integer", - "description": "" + "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/kubernetes_core_TCPSocketAction", "existingJavaType": "io.fabric8.kubernetes.api.model.TCPSocketAction" }, "timeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -22516,13 +19631,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Project", "required": true }, @@ -22544,12 +19657,10 @@ "projectedvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "sources": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_VolumeProjection", "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeProjection" @@ -22562,13 +19673,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_project_Project", "existingJavaType": "io.fabric8.openshift.api.model.Project" @@ -22576,7 +19685,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ProjectList", "required": true }, @@ -22591,21 +19699,17 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "project.openshift.io/v1", "required": true }, "description": { - "type": "string", - "description": "" + "type": "string" }, "displayName": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "ProjectRequest", "required": true }, @@ -22620,11 +19724,9 @@ "properties": { "finalizers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -22634,7 +19736,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_NamespaceCondition", @@ -22642,8 +19743,7 @@ } }, "phase": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22652,13 +19752,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Proxy", "required": true }, @@ -22680,16 +19778,13 @@ "proxyconfig": { "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22698,13 +19793,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Proxy", "existingJavaType": "io.fabric8.openshift.api.model.Proxy" @@ -22712,7 +19805,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ProxyList", "required": true }, @@ -22726,24 +19818,19 @@ "proxyspec": { "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" }, "readinessEndpoints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "trustedCA": { @@ -22756,16 +19843,13 @@ "proxystatus": { "properties": { "httpProxy": { - "type": "string", - "description": "" + "type": "string" }, "httpsProxy": { - "type": "string", - "description": "" + "type": "string" }, "noProxy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22773,8 +19857,7 @@ "quantity": { "properties": { "Format": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22782,28 +19865,22 @@ "quobytevolumesource": { "properties": { "group": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "registry": { - "type": "string", - "description": "" + "type": "string" }, "tenant": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" }, "volume": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22812,17 +19889,14 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "data": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "RangeAllocation", "required": true }, @@ -22831,8 +19905,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "range": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22841,13 +19914,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_RangeAllocation", "existingJavaType": "io.fabric8.openshift.api.model.RangeAllocation" @@ -22855,7 +19926,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RangeAllocationList", "required": true }, @@ -22872,40 +19942,32 @@ "rbdvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "keyring": { - "type": "string", - "description": "" + "type": "string" }, "monitors": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "pool": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22926,7 +19988,6 @@ }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -22936,24 +19997,19 @@ "properties": { "channels": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "url": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -22969,8 +20025,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "includeManifest": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -22983,16 +20038,13 @@ "properties": { "additionalTags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "images": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_image_ImageImportStatus", @@ -23013,52 +20065,40 @@ "existingJavaType": "io.fabric8.openshift.api.model.ConfigMapNameReference" }, "challengeURL": { - "type": "string", - "description": "" + "type": "string" }, "clientCommonNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "emailHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "headers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "loginURL": { - "type": "string", - "description": "" + "type": "string" }, "nameHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "preferredUsernameHeaders": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -23068,7 +20108,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -23077,42 +20116,33 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "ResourceAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23120,16 +20150,14 @@ "resourcefieldselector": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "divisor": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23138,7 +20166,6 @@ "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -23151,11 +20178,9 @@ }, "scopes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -23165,7 +20190,6 @@ "properties": { "hard": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -23174,7 +20198,6 @@ }, "used": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -23187,8 +20210,7 @@ "resourcequotastatusbynamespace": { "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/kubernetes_core_ResourceQuotaStatus", @@ -23201,7 +20223,6 @@ "properties": { "limits": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -23210,7 +20231,6 @@ }, "requests": { "type": "object", - "description": "", "additionalProperties": { "$ref": "#/definitions/kubernetes_resource_Quantity", "existingJavaType": "io.fabric8.kubernetes.api.model.Quantity" @@ -23224,13 +20244,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Role", "required": true }, @@ -23240,7 +20258,6 @@ }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -23253,21 +20270,17 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "groupNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "RoleBinding", "required": true }, @@ -23281,7 +20294,6 @@ }, "subjects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -23289,10 +20301,8 @@ }, "userNames": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -23302,13 +20312,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_RoleBinding", "existingJavaType": "io.fabric8.openshift.api.model.RoleBinding" @@ -23316,7 +20324,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleBindingList", "required": true }, @@ -23331,13 +20338,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "RoleBindingRestriction", "required": true }, @@ -23373,13 +20378,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_Role", "existingJavaType": "io.fabric8.openshift.api.model.Role" @@ -23387,7 +20390,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RoleList", "required": true }, @@ -23402,7 +20404,6 @@ "properties": { "intervalSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "maxSurge": { @@ -23423,12 +20424,10 @@ }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "updatePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -23438,10 +20437,8 @@ "properties": { "paths": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -23451,13 +20448,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "route.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Route", "required": true }, @@ -23480,7 +20475,6 @@ "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteIngressCondition", @@ -23488,20 +20482,16 @@ } }, "host": { - "type": "string", - "description": "" + "type": "string" }, "routerCanonicalHostname": { - "type": "string", - "description": "" + "type": "string" }, "routerName": { - "type": "string", - "description": "" + "type": "string" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23513,20 +20503,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23535,13 +20521,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "route.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_route_Route", "existingJavaType": "io.fabric8.openshift.api.model.Route" @@ -23549,7 +20533,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RouteList", "required": true }, @@ -23573,7 +20556,6 @@ "properties": { "alternateBackends": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteTargetReference", @@ -23581,20 +20563,17 @@ } }, "host": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/os_route_RoutePort", "existingJavaType": "io.fabric8.openshift.api.model.RoutePort" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "tls": { "$ref": "#/definitions/os_route_TLSConfig", @@ -23605,8 +20584,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.RouteTargetReference" }, "wildcardPolicy": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23615,7 +20593,6 @@ "properties": { "ingress": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_route_RouteIngress", @@ -23628,16 +20605,13 @@ "routetargetreference": { "properties": { "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -23645,22 +20619,18 @@ "runasuserstrategyoptions": { "properties": { "type": { - "type": "string", - "description": "" + "type": "string" }, "uid": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "uidRangeMax": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "uidRangeMin": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -23669,44 +20639,35 @@ "scaleiovolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "gateway": { - "type": "string", - "description": "" + "type": "string" }, "protectionDomain": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "sslEnabled": { - "type": "boolean", - "description": "" + "type": "boolean" }, "storageMode": { - "type": "string", - "description": "" + "type": "string" }, "storagePool": { - "type": "string", - "description": "" + "type": "string" }, "system": { - "type": "string", - "description": "" + "type": "string" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23715,13 +20676,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Scheduler", "required": true }, @@ -23744,13 +20703,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "config.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_config_Scheduler", "existingJavaType": "io.fabric8.openshift.api.model.Scheduler" @@ -23758,7 +20715,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SchedulerList", "required": true }, @@ -23772,12 +20728,10 @@ "schedulerspec": { "properties": { "defaultNodeSelector": { - "type": "string", - "description": "" + "type": "string" }, "mastersSchedulable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "policy": { "$ref": "#/definitions/os_config_ConfigMapNameReference", @@ -23792,20 +20746,16 @@ "scopedresourceselectorrequirement": { "properties": { "operator": { - "type": "string", - "description": "" + "type": "string" }, "scopeName": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -23819,11 +20769,9 @@ }, "literals": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -23833,7 +20781,6 @@ "properties": { "matchExpressions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_ScopedResourceSelectorRequirement", @@ -23846,12 +20793,10 @@ "seccompprofile": { "properties": { "localhostProfile": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23859,8 +20804,7 @@ "secretbuildsource": { "properties": { "destinationDir": { - "type": "string", - "description": "" + "type": "string" }, "secret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -23872,12 +20816,10 @@ "secretenvsource": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -23885,16 +20827,13 @@ "secretkeyselector": { "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -23902,8 +20841,7 @@ "secretlocalreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23911,8 +20849,7 @@ "secretnamereference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23921,7 +20858,6 @@ "properties": { "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -23929,12 +20865,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -23942,8 +20876,7 @@ "secretspec": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "secretSource": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", @@ -23955,12 +20888,10 @@ "secretvolumesource": { "properties": { "defaultMode": { - "type": "integer", - "description": "" + "type": "integer" }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_KeyToPath", @@ -23968,12 +20899,10 @@ } }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -23981,37 +20910,30 @@ "securitycontext": { "properties": { "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "capabilities": { "$ref": "#/definitions/kubernetes_core_Capabilities", "existingJavaType": "io.fabric8.kubernetes.api.model.Capabilities" }, "privileged": { - "type": "boolean", - "description": "" + "type": "boolean" }, "procMount": { - "type": "string", - "description": "" + "type": "string" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsGroup": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "runAsNonRoot": { - "type": "boolean", - "description": "" + "type": "boolean" }, "runAsUser": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "seLinuxOptions": { @@ -24032,44 +20954,34 @@ "securitycontextconstraints": { "properties": { "allowHostDirVolumePlugin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowHostPorts": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowPrivilegedContainer": { - "type": "boolean", - "description": "" + "type": "boolean" }, "allowedCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "allowedFlexVolumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_AllowedFlexVolume", @@ -24078,38 +20990,30 @@ }, "allowedUnsafeSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "defaultAddCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "defaultAllowPrivilegeEscalation": { - "type": "boolean", - "description": "" + "type": "boolean" }, "forbiddenSysctls": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fsGroup": { @@ -24118,15 +21022,12 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "SecurityContextConstraints", "required": true }, @@ -24135,19 +21036,15 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" }, "priority": { - "type": "integer", - "description": "" + "type": "integer" }, "readOnlyRootFilesystem": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requiredDropCapabilities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "runAsUser": { @@ -24160,11 +21057,9 @@ }, "seccompProfiles": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "supplementalGroups": { @@ -24173,18 +21068,14 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "volumes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -24194,13 +21085,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "security.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_security_SecurityContextConstraints", "existingJavaType": "io.fabric8.openshift.api.model.SecurityContextConstraints" @@ -24208,7 +21097,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SecurityContextConstraintsList", "required": true }, @@ -24223,13 +21111,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SelfSubjectRulesReview", "required": true }, @@ -24248,10 +21134,8 @@ "properties": { "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -24264,8 +21148,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SELinuxOptions" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24273,20 +21156,16 @@ "selinuxoptions": { "properties": { "level": { - "type": "string", - "description": "" + "type": "string" }, "role": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24294,12 +21173,10 @@ "serveraddressbyclientcidr": { "properties": { "clientCIDR": { - "type": "string", - "description": "" + "type": "string" }, "serverAddress": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24311,12 +21188,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/kubernetes_core_PodTemplateSpec", @@ -24328,12 +21203,10 @@ "serviceaccountreference": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24342,15 +21215,12 @@ "properties": { "namespaces": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "serviceaccounts": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_ServiceAccountReference", "existingJavaType": "io.fabric8.openshift.api.model.ServiceAccountReference" @@ -24362,17 +21232,14 @@ "serviceaccounttokenprojection": { "properties": { "audience": { - "type": "string", - "description": "" + "type": "string" }, "expirationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24388,20 +21255,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24409,12 +21272,10 @@ "signaturegenericentity": { "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24422,12 +21283,10 @@ "signatureissuer": { "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24435,16 +21294,13 @@ "signaturesubject": { "properties": { "commonName": { - "type": "string", - "description": "" + "type": "string" }, "organization": { - "type": "string", - "description": "" + "type": "string" }, "publicKeyID": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24453,7 +21309,6 @@ "properties": { "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_core_EnvVar", @@ -24461,24 +21316,21 @@ } }, "forcePull": { - "type": "boolean", - "description": "" + "type": "boolean" }, "from": { "$ref": "#/definitions/kubernetes_core_ObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "incremental": { - "type": "boolean", - "description": "" + "type": "boolean" }, "pullSecret": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "scripts": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24486,12 +21338,10 @@ "sourcecontroluser": { "properties": { "email": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24503,8 +21353,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.GitSourceRevision" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24512,8 +21361,7 @@ "sourcestrategyoptions": { "properties": { "incremental": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -24522,12 +21370,10 @@ "properties": { "durationMilliseconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -24535,7 +21381,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_build_StepInfo", @@ -24549,13 +21394,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "code": { - "type": "integer", - "description": "" + "type": "integer" }, "details": { "$ref": "#/definitions/kubernetes_apimachinery_StatusDetails", @@ -24563,25 +21406,21 @@ }, "kind": { "type": "string", - "description": "", "default": "Status", "required": true }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ListMeta", "existingJavaType": "io.fabric8.kubernetes.api.model.ListMeta" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24589,16 +21428,13 @@ "statuscause": { "properties": { "field": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24607,7 +21443,6 @@ "properties": { "causes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/kubernetes_apimachinery_StatusCause", @@ -24615,24 +21450,19 @@ } }, "group": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "retryAfterSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24641,12 +21471,10 @@ "properties": { "durationMilliseconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", @@ -24658,24 +21486,20 @@ "storageosvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secretRef": { "$ref": "#/definitions/kubernetes_core_LocalObjectReference", "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" }, "volumeName": { - "type": "string", - "description": "" + "type": "string" }, "volumeNamespace": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24684,7 +21508,6 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, @@ -24694,61 +21517,47 @@ }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "isNonResourceURL": { - "type": "boolean", - "description": "" + "type": "boolean" }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReview", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIGroup": { - "type": "string", - "description": "" + "type": "string" }, "resourceAPIVersion": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" }, "verb": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24756,32 +21565,26 @@ "subjectaccessreviewresponse": { "properties": { "allowed": { - "type": "boolean", - "description": "" + "type": "boolean" }, "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "SubjectAccessReviewResponse", "required": true }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24790,13 +21593,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authorization.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SubjectRulesReview", "required": true }, @@ -24815,23 +21616,18 @@ "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "scopes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "user": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24839,12 +21635,10 @@ "subjectrulesreviewstatus": { "properties": { "evaluationError": { - "type": "string", - "description": "" + "type": "string" }, "rules": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_authorization_PolicyRule", "existingJavaType": "io.fabric8.openshift.api.model.PolicyRule" @@ -24857,7 +21651,6 @@ "properties": { "ranges": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_security_IDRange", @@ -24865,8 +21658,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24874,12 +21666,10 @@ "sysctl": { "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24891,17 +21681,14 @@ "existingJavaType": "String" }, "dockerImageReference": { - "type": "string", - "description": "" + "type": "string" }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "image": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24910,7 +21697,6 @@ "properties": { "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "lastTransitionTime": { @@ -24918,20 +21704,16 @@ "existingJavaType": "String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -24939,8 +21721,7 @@ "tagimagehook": { "properties": { "containerName": { - "type": "string", - "description": "" + "type": "string" }, "to": { "$ref": "#/definitions/kubernetes_core_ObjectReference", @@ -24952,12 +21733,10 @@ "tagimportpolicy": { "properties": { "insecure": { - "type": "boolean", - "description": "" + "type": "boolean" }, "scheduled": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "additionalProperties": true @@ -24966,10 +21745,8 @@ "properties": { "annotations": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, @@ -24979,7 +21756,6 @@ }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "importPolicy": { @@ -24987,12 +21763,10 @@ "existingJavaType": "io.fabric8.openshift.api.model.TagImportPolicy" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "reference": { - "type": "boolean", - "description": "" + "type": "boolean" }, "referencePolicy": { "$ref": "#/definitions/os_image_TagReferencePolicy", @@ -25004,8 +21778,7 @@ "tagreferencepolicy": { "properties": { "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25013,8 +21786,7 @@ "tcpsocketaction": { "properties": { "host": { - "type": "string", - "description": "" + "type": "string" }, "port": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_util_intstr_IntOrString", @@ -25027,28 +21799,23 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "template.openshift.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Template", "required": true }, "labels": { "type": "object", - "description": "", "additionalProperties": { - "type": "string", - "description": "" + "type": "string" }, "existingJavaType": "java.util.Map\u003cString, String\u003e" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/kubernetes_apimachinery_ObjectMeta", @@ -25056,7 +21823,6 @@ }, "objects": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_pkg_runtime_RawExtension", "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -25064,7 +21830,6 @@ }, "parameters": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/os_template_Parameter", @@ -25078,13 +21843,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "template.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_template_Template", "existingJavaType": "io.fabric8.openshift.api.model.Template" @@ -25092,7 +21855,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TemplateList", "required": true }, @@ -25106,8 +21868,7 @@ "time": { "properties": { "Time": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25115,28 +21876,22 @@ "tlsconfig": { "properties": { "caCertificate": { - "type": "string", - "description": "" + "type": "string" }, "certificate": { - "type": "string", - "description": "" + "type": "string" }, "destinationCACertificate": { - "type": "string", - "description": "" + "type": "string" }, "insecureEdgeTerminationPolicy": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "termination": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25145,15 +21900,12 @@ "properties": { "ciphers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "minTLSVersion": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25177,8 +21929,7 @@ "existingJavaType": "io.fabric8.openshift.api.model.OldTLSProfile" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25190,12 +21941,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Duration" }, "accessTokenInactivityTimeoutSeconds": { - "type": "integer", - "description": "" + "type": "integer" }, "accessTokenMaxAgeSeconds": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -25204,13 +21953,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "authentication.k8s.io/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TokenReview", "required": true }, @@ -25233,16 +21980,13 @@ "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "token": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25251,20 +21995,16 @@ "properties": { "audiences": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "authenticated": { - "type": "boolean", - "description": "" + "type": "boolean" }, "error": { - "type": "string", - "description": "" + "type": "string" }, "user": { "$ref": "#/definitions/kubernetes_authentication_UserInfo", @@ -25276,25 +22016,20 @@ "toleration": { "properties": { "effect": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "tolerationSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25306,16 +22041,13 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" }, "maxSkew": { - "type": "integer", - "description": "" + "type": "integer" }, "topologyKey": { - "type": "string", - "description": "" + "type": "string" }, "whenUnsatisfiable": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25323,16 +22055,13 @@ "typedlocalobjectreference": { "properties": { "apiGroup": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25340,12 +22069,10 @@ "typemeta": { "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25353,16 +22080,13 @@ "update": { "properties": { "force": { - "type": "boolean", - "description": "" + "type": "boolean" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25374,24 +22098,20 @@ "existingJavaType": "String" }, "image": { - "type": "string", - "description": "" + "type": "string" }, "startedTime": { "$ref": "#/definitions/kubernetes_apimachinery_Time", "existingJavaType": "String" }, "state": { - "type": "string", - "description": "" + "type": "string" }, "verified": { - "type": "boolean", - "description": "" + "type": "boolean" }, "version": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25400,26 +22120,21 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "v1", "required": true }, "dryRun": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "fieldManager": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "UpdateOptions", "required": true } @@ -25430,33 +22145,26 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "fullName": { - "type": "string", - "description": "" + "type": "string" }, "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "identities": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "kind": { "type": "string", - "description": "", "default": "User", "required": true }, @@ -25471,33 +22179,26 @@ "properties": { "extra": { "type": "object", - "description": "", "additionalProperties": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "existingJavaType": "java.util.Map\u003cString, java.util.ArrayList\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25506,13 +22207,11 @@ "properties": { "apiVersion": { "type": "string", - "description": "", "default": "user.openshift.io/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/os_user_User", "existingJavaType": "io.fabric8.openshift.api.model.User" @@ -25520,7 +22219,6 @@ }, "kind": { "type": "string", - "description": "", "default": "UserList", "required": true }, @@ -25535,15 +22233,12 @@ "properties": { "groups": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "labels": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/kubernetes_apimachinery_LabelSelector", "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -25551,10 +22246,8 @@ }, "users": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -25636,7 +22329,6 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -25690,12 +22382,10 @@ "volumedevice": { "properties": { "devicePath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25703,28 +22393,22 @@ "volumemount": { "properties": { "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "mountPropagation": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "subPathExpr": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25877,16 +22561,13 @@ "vsphereplatformstatus": { "properties": { "apiServerInternalIP": { - "type": "string", - "description": "" + "type": "string" }, "ingressIP": { - "type": "string", - "description": "" + "type": "string" }, "nodeDNSIP": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25894,20 +22575,16 @@ "vspherevirtualdiskvolumesource": { "properties": { "fsType": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyID": { - "type": "string", - "description": "" + "type": "string" }, "storagePolicyName": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true @@ -25915,12 +22592,10 @@ "webhooktrigger": { "properties": { "allowEnv": { - "type": "boolean", - "description": "" + "type": "boolean" }, "secret": { - "type": "string", - "description": "" + "type": "string" }, "secretReference": { "$ref": "#/definitions/os_build_SecretLocalReference", @@ -25936,8 +22611,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodAffinityTerm" }, "weight": { - "type": "integer", - "description": "" + "type": "integer" } }, "additionalProperties": true @@ -25945,16 +22619,13 @@ "windowssecuritycontextoptions": { "properties": { "gmsaCredentialSpec": { - "type": "string", - "description": "" + "type": "string" }, "gmsaCredentialSpecName": { - "type": "string", - "description": "" + "type": "string" }, "runAsUserName": { - "type": "string", - "description": "" + "type": "string" } }, "additionalProperties": true From 122e357769117d479443c3d0ec2e4f04b9fefe94 Mon Sep 17 00:00:00 2001 From: Chris Laprun Date: Thu, 17 Dec 2020 21:26:22 +0100 Subject: [PATCH 4/4] feat: re-generate missing schemas --- .../resources/schema/chaosmesh-schema.json | 434 +++-------- .../main/resources/schema/knative-schema.json | 673 +++--------------- .../schema/servicecatalog-schema.json | 410 +++-------- .../schema/tekton-schema-triggers.json | 147 +--- .../schema/tekton-schema-v1alpha1.json | 431 +++-------- .../schema/tekton-schema-v1beta1.json | 527 +++----------- .../schema/volumesnapshot-schema.json | 54 +- 7 files changed, 518 insertions(+), 2158 deletions(-) diff --git a/extensions/chaosmesh/model/src/main/resources/schema/chaosmesh-schema.json b/extensions/chaosmesh/model/src/main/resources/schema/chaosmesh-schema.json index e806cef36fe..2c6e5d09dd7 100644 --- a/extensions/chaosmesh/model/src/main/resources/schema/chaosmesh-schema.json +++ b/extensions/chaosmesh/model/src/main/resources/schema/chaosmesh-schema.json @@ -4,7 +4,6 @@ "definitions": { "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_AttrOverrideSpec": { "type": "object", - "description": "", "properties": { "atime": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_Timespec", @@ -12,7 +11,6 @@ }, "blocks": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "ctime": { @@ -21,17 +19,14 @@ }, "gid": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "ino": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "kind": { "type": "string", - "description": "", "existingJavaType": "String" }, "mtime": { @@ -40,27 +35,22 @@ }, "nlink": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "perm": { "type": "integer", - "description": "", "existingJavaType": "Integer" }, "rdev": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "size": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "uid": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -71,29 +61,23 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_BandwidthSpec": { "type": "object", - "description": "", "properties": { "buffer": { - "type": "integer", - "description": "" + "type": "integer" }, "limit": { - "type": "integer", - "description": "" + "type": "integer" }, "minburst": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "peakrate": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "rate": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.BandwidthSpec", @@ -103,25 +87,20 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_CPUStressor": { "type": "object", - "description": "", "properties": { "load": { "type": "integer", - "description": "", "existingJavaType": "Integer" }, "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "workers": { - "type": "integer", - "description": "" + "type": "integer" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.CPUStressor", @@ -131,15 +110,12 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_CorruptSpec": { "type": "object", - "description": "", "properties": { "correlation": { - "type": "string", - "description": "" + "type": "string" }, "corrupt": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.CorruptSpec", @@ -149,19 +125,15 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_DelaySpec": { "type": "object", - "description": "", "properties": { "correlation": { - "type": "string", - "description": "" + "type": "string" }, "jitter": { - "type": "string", - "description": "" + "type": "string" }, "latency": { - "type": "string", - "description": "" + "type": "string" }, "reorder": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ReorderSpec", @@ -175,15 +147,12 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_DuplicateSpec": { "type": "object", - "description": "", "properties": { "correlation": { - "type": "string", - "description": "" + "type": "string" }, "duplicate": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.DuplicateSpec", @@ -193,22 +162,18 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus": { "type": "object", - "description": "", "properties": { "duration": { - "type": "string", - "description": "" + "type": "string" }, "endTime": { "existingJavaType": "java.lang.String" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "podRecords": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodStatus", @@ -216,8 +181,7 @@ } }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "existingJavaType": "java.lang.String" @@ -230,11 +194,9 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_FailKernRequest": { "type": "object", - "description": "", "properties": { "callchain": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_Frame", @@ -242,25 +204,20 @@ } }, "failtype": { - "type": "integer", - "description": "" + "type": "integer" }, "headers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "probability": { - "type": "integer", - "description": "" + "type": "integer" }, "times": { - "type": "integer", - "description": "" + "type": "integer" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.FailKernRequest", @@ -270,19 +227,15 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_Frame": { "type": "object", - "description": "", "properties": { "funcname": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { - "type": "string", - "description": "" + "type": "string" }, "predicate": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.Frame", @@ -292,17 +245,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_IoChaos": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "IoChaos", "required": true }, @@ -326,17 +276,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_IoChaosList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_IoChaos", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.IoChaos" @@ -344,7 +291,6 @@ }, "kind": { "type": "string", - "description": "", "default": "IoChaosList", "required": true }, @@ -360,49 +306,39 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_IoChaosSpec": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "attr": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_AttrOverrideSpec", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.AttrOverrideSpec" }, "delay": { - "type": "string", - "description": "" + "type": "string" }, "duration": { "type": "string", - "description": "", "existingJavaType": "String" }, "errno": { - "type": "integer", - "description": "" + "type": "integer" }, "methods": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" }, "percent": { - "type": "integer", - "description": "" + "type": "integer" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SchedulerSpec", @@ -413,12 +349,10 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.SelectorSpec" }, "value": { - "type": "string", - "description": "" + "type": "string" }, "volumePath": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.IoChaosSpec", @@ -428,23 +362,19 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_IoChaosStatus": { "type": "object", - "description": "", "properties": { "experiment": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.ExperimentStatus" }, "failedMessage": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus", @@ -458,17 +388,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_KernelChaos": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KernelChaos", "required": true }, @@ -492,17 +419,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_KernelChaosList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_KernelChaos", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.KernelChaos" @@ -510,7 +434,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KernelChaosList", "required": true }, @@ -526,11 +449,9 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_KernelChaosSpec": { "type": "object", - "description": "", "properties": { "duration": { "type": "string", - "description": "", "existingJavaType": "String" }, "failKernRequest": { @@ -538,8 +459,7 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.FailKernRequest" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SchedulerSpec", @@ -550,8 +470,7 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.SelectorSpec" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.KernelChaosSpec", @@ -561,23 +480,19 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_KernelChaosStatus": { "type": "object", - "description": "", "properties": { "experiment": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.ExperimentStatus" }, "failedMessage": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus", @@ -591,15 +506,12 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_LossSpec": { "type": "object", - "description": "", "properties": { "correlation": { - "type": "string", - "description": "" + "type": "string" }, "loss": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.LossSpec", @@ -609,20 +521,16 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_MemoryStressor": { "type": "object", - "description": "", "properties": { "options": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "workers": { - "type": "integer", - "description": "" + "type": "integer" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.MemoryStressor", @@ -632,17 +540,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_NetworkChaos": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "NetworkChaos", "required": true }, @@ -666,17 +571,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_NetworkChaosList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_NetworkChaos", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.NetworkChaos" @@ -684,7 +586,6 @@ }, "kind": { "type": "string", - "description": "", "default": "NetworkChaosList", "required": true }, @@ -700,11 +601,9 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_NetworkChaosSpec": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "bandwidth": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_BandwidthSpec", @@ -719,8 +618,7 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.DelaySpec" }, "direction": { - "type": "string", - "description": "" + "type": "string" }, "duplicate": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_DuplicateSpec", @@ -728,16 +626,13 @@ }, "duration": { "type": "string", - "description": "", "existingJavaType": "String" }, "externalTargets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "loss": { @@ -745,8 +640,7 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.LossSpec" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SchedulerSpec", @@ -761,8 +655,7 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.Target" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.NetworkChaosSpec", @@ -772,23 +665,19 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_NetworkChaosStatus": { "type": "object", - "description": "", "properties": { "experiment": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.ExperimentStatus" }, "failedMessage": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus", @@ -802,17 +691,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodChaos": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodChaos", "required": true }, @@ -836,17 +722,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodChaosList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodChaos", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.PodChaos" @@ -854,7 +737,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodChaosList", "required": true }, @@ -870,29 +752,23 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodChaosSpec": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "containerName": { - "type": "string", - "description": "" + "type": "string" }, "duration": { "type": "string", - "description": "", "existingJavaType": "String" }, "gracePeriod": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SchedulerSpec", @@ -903,8 +779,7 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.SelectorSpec" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.PodChaosSpec", @@ -914,23 +789,19 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodChaosStatus": { "type": "object", - "description": "", "properties": { "experiment": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.ExperimentStatus" }, "failedMessage": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus", @@ -944,17 +815,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodNetworkChaos": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PodNetworkChaos", "required": true }, @@ -978,17 +846,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodNetworkChaosList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodNetworkChaos", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.PodNetworkChaos" @@ -996,7 +861,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PodNetworkChaosList", "required": true }, @@ -1012,11 +876,9 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodNetworkChaosSpec": { "type": "object", - "description": "", "properties": { "ipsets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_RawIPSet", @@ -1025,7 +887,6 @@ }, "iptables": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_RawIptables", @@ -1034,7 +895,6 @@ }, "tcs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_RawTrafficControl", @@ -1049,23 +909,19 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodNetworkChaosStatus": { "type": "object", - "description": "", "properties": { "experiment": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.ExperimentStatus" }, "failedMessage": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus", @@ -1079,31 +935,24 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_PodStatus": { "type": "object", - "description": "", "properties": { "action": { - "type": "string", - "description": "" + "type": "string" }, "hostIP": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "podIP": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.PodStatus", @@ -1113,23 +962,18 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_RawIPSet": { "type": "object", - "description": "", "properties": { "cidrs": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "source": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.RawIPSet", @@ -1139,27 +983,21 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_RawIptables": { "type": "object", - "description": "", "properties": { "direction": { - "type": "string", - "description": "" + "type": "string" }, "ipsets": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "source": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.RawIptables", @@ -1169,7 +1007,6 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_RawTrafficControl": { "type": "object", - "description": "", "properties": { "bandwidth": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_BandwidthSpec", @@ -1188,20 +1025,17 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.DuplicateSpec" }, "ipset": { - "type": "string", - "description": "" + "type": "string" }, "loss": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_LossSpec", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.LossSpec" }, "source": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.RawTrafficControl", @@ -1211,19 +1045,15 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ReorderSpec": { "type": "object", - "description": "", "properties": { "correlation": { - "type": "string", - "description": "" + "type": "string" }, "gap": { - "type": "integer", - "description": "" + "type": "integer" }, "reorder": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.ReorderSpec", @@ -1233,7 +1063,6 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus": { "type": "object", - "description": "", "properties": { "nextRecover": { "existingJavaType": "java.lang.String" @@ -1249,11 +1078,9 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SchedulerSpec": { "type": "object", - "description": "", "properties": { "cron": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.SchedulerSpec", @@ -1263,58 +1090,46 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SelectorSpec": { "type": "object", - "description": "", "properties": { "annotationSelectors": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "fieldSelectors": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "labelSelectors": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "namespaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "nodeSelectors": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "nodes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "podPhaseSelectors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "pods": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,java.util.List\u003cString\u003e\u003e" } }, @@ -1325,17 +1140,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_StressChaos": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "StressChaos", "required": true }, @@ -1359,17 +1171,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_StressChaosList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_StressChaos", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.StressChaos" @@ -1377,7 +1186,6 @@ }, "kind": { "type": "string", - "description": "", "default": "StressChaosList", "required": true }, @@ -1393,21 +1201,17 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_StressChaosSpec": { "type": "object", - "description": "", "properties": { "containerName": { "type": "string", - "description": "", "existingJavaType": "String" }, "duration": { "type": "string", - "description": "", "existingJavaType": "String" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SchedulerSpec", @@ -1418,16 +1222,14 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.SelectorSpec" }, "stressngStressors": { - "type": "string", - "description": "" + "type": "string" }, "stressors": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_Stressors", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.Stressors" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.StressChaosSpec", @@ -1437,28 +1239,23 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_StressChaosStatus": { "type": "object", - "description": "", "properties": { "experiment": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.ExperimentStatus" }, "failedMessage": { - "type": "string", - "description": "" + "type": "string" }, "instances": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,io.fabric8.chaosmesh.v1alpha1.StressInstance\u003e" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus", @@ -1472,14 +1269,12 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_StressInstance": { "type": "object", - "description": "", "properties": { "startTime": { "existingJavaType": "java.lang.String" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.StressInstance", @@ -1489,7 +1284,6 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_Stressors": { "type": "object", - "description": "", "properties": { "cpu": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_CPUStressor", @@ -1507,19 +1301,16 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_Target": { "type": "object", - "description": "", "properties": { "mode": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SelectorSpec", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.SelectorSpec" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.Target", @@ -1529,17 +1320,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_TimeChaos": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TimeChaos", "required": true }, @@ -1563,17 +1351,14 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_TimeChaosList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "chaos-mesh.org/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_TimeChaos", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.TimeChaos" @@ -1581,7 +1366,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TimeChaosList", "required": true }, @@ -1597,34 +1381,27 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_TimeChaosSpec": { "type": "object", - "description": "", "properties": { "clockIds": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "containerNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "duration": { "type": "string", - "description": "", "existingJavaType": "String" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_SchedulerSpec", @@ -1635,12 +1412,10 @@ "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.SelectorSpec" }, "timeOffset": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.chaosmesh.v1alpha1.TimeChaosSpec", @@ -1650,23 +1425,19 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_TimeChaosStatus": { "type": "object", - "description": "", "properties": { "experiment": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ExperimentStatus", "existingJavaType": "io.fabric8.chaosmesh.v1alpha1.ExperimentStatus" }, "failedMessage": { - "type": "string", - "description": "" + "type": "string" }, "phase": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "scheduler": { "$ref": "#/definitions/github_com_chaos-mesh_chaos-mesh_api_v1alpha1_ScheduleStatus", @@ -1680,16 +1451,13 @@ }, "github_com_chaos-mesh_chaos-mesh_api_v1alpha1_Timespec": { "type": "object", - "description": "", "properties": { "nsec": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sec": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, diff --git a/extensions/knative/model/src/main/resources/schema/knative-schema.json b/extensions/knative/model/src/main/resources/schema/knative-schema.json index 513537782b7..9369b1ca9f6 100644 --- a/extensions/knative/model/src/main/resources/schema/knative-schema.json +++ b/extensions/knative/model/src/main/resources/schema/knative-schema.json @@ -4,17 +4,14 @@ "definitions": { "knative_dev_eventing-contrib_awssqs_pkg_apis_sources_v1alpha1_AwsSqsSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "AwsSqsSource", "required": true }, @@ -38,17 +35,14 @@ }, "knative_dev_eventing-contrib_awssqs_pkg_apis_sources_v1alpha1_AwsSqsSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_awssqs_pkg_apis_sources_v1alpha1_AwsSqsSource", "existingJavaType": "io.fabric8.knative.eventing.contrib.awssqs.v1alpha1.AwsSqsSource" @@ -56,7 +50,6 @@ }, "kind": { "type": "string", - "description": "", "default": "AwsSqsSourceList", "required": true }, @@ -72,23 +65,19 @@ }, "knative_dev_eventing-contrib_awssqs_pkg_apis_sources_v1alpha1_AwsSqsSourceSpec": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "awsCredsSecret": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" }, "queueUrl": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sink": { "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -101,16 +90,13 @@ }, "knative_dev_eventing-contrib_awssqs_pkg_apis_sources_v1alpha1_AwsSqsSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -119,7 +105,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -128,7 +113,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -142,17 +126,14 @@ }, "knative_dev_eventing-contrib_couchdb_source_pkg_apis_sources_v1alpha1_CouchDbSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "CouchDbSource", "required": true }, @@ -176,17 +157,14 @@ }, "knative_dev_eventing-contrib_couchdb_source_pkg_apis_sources_v1alpha1_CouchDbSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_couchdb_source_pkg_apis_sources_v1alpha1_CouchDbSource", "existingJavaType": "io.fabric8.knative.eventing.contrib.couchdb.v1alpha1.CouchDbSource" @@ -194,7 +172,6 @@ }, "kind": { "type": "string", - "description": "", "default": "CouchDbSourceList", "required": true }, @@ -210,22 +187,18 @@ }, "knative_dev_eventing-contrib_couchdb_source_pkg_apis_sources_v1alpha1_CouchDbSourceSpec": { "type": "object", - "description": "", "properties": { "credentials": { "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" }, "database": { - "type": "string", - "description": "" + "type": "string" }, "feed": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sink": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Destination", @@ -239,16 +212,13 @@ }, "knative_dev_eventing-contrib_couchdb_source_pkg_apis_sources_v1alpha1_CouchDbSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -257,7 +227,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -266,7 +235,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -280,17 +248,14 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_bindings_v1alpha1_GitHubBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "bindings.knative.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GitHubBinding", "required": true }, @@ -314,17 +279,14 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_bindings_v1alpha1_GitHubBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "bindings.knative.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_github_pkg_apis_bindings_v1alpha1_GitHubBinding", "existingJavaType": "io.fabric8.knative.eventing.contrib.github.v1alpha1.GitHubBinding" @@ -332,7 +294,6 @@ }, "kind": { "type": "string", - "description": "", "default": "GitHubBindingList", "required": true }, @@ -348,7 +309,6 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_bindings_v1alpha1_GitHubBindingSpec": { "type": "object", - "description": "", "properties": { "accessToken": { "$ref": "#/definitions/knative_dev_eventing-contrib_github_pkg_apis_bindings_v1alpha1_SecretValueFromSource", @@ -366,16 +326,13 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_bindings_v1alpha1_GitHubBindingStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -384,7 +341,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -393,7 +349,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -407,7 +362,6 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_bindings_v1alpha1_SecretValueFromSource": { "type": "object", - "description": "", "properties": { "secretKeyRef": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" @@ -420,17 +374,14 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_GitHubSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GitHubSource", "required": true }, @@ -454,17 +405,14 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_GitHubSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_GitHubSource", "existingJavaType": "io.fabric8.knative.eventing.contrib.github.v1alpha1.GitHubSource" @@ -472,7 +420,6 @@ }, "kind": { "type": "string", - "description": "", "default": "GitHubSourceList", "required": true }, @@ -488,7 +435,6 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_GitHubSourceSpec": { "type": "object", - "description": "", "properties": { "accessToken": { "$ref": "#/definitions/knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_SecretValueFromSource", @@ -500,19 +446,15 @@ }, "eventTypes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "githubAPIURL": { - "type": "string", - "description": "" + "type": "string" }, "ownerAndRepository": { - "type": "string", - "description": "" + "type": "string" }, "secretToken": { "$ref": "#/definitions/knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_SecretValueFromSource", @@ -520,12 +462,10 @@ }, "secure": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sink": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Destination", @@ -539,16 +479,13 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_GitHubSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -557,7 +494,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -566,15 +502,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { "existingJavaType": "java.lang.String" }, "webhookIDKey": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.eventing.contrib.github.v1alpha1.GitHubSourceStatus", @@ -584,7 +518,6 @@ }, "knative_dev_eventing-contrib_github_pkg_apis_sources_v1alpha1_SecretValueFromSource": { "type": "object", - "description": "", "properties": { "secretKeyRef": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" @@ -597,17 +530,14 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_bindings_v1alpha1_GitLabBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "bindings.knative.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GitLabBinding", "required": true }, @@ -631,17 +561,14 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_bindings_v1alpha1_GitLabBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "bindings.knative.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_gitlab_pkg_apis_bindings_v1alpha1_GitLabBinding", "existingJavaType": "io.fabric8.knative.eventing.contrib.gitlab.v1alpha1.GitLabBinding" @@ -649,7 +576,6 @@ }, "kind": { "type": "string", - "description": "", "default": "GitLabBindingList", "required": true }, @@ -665,7 +591,6 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_bindings_v1alpha1_GitLabBindingSpec": { "type": "object", - "description": "", "properties": { "accessToken": { "$ref": "#/definitions/knative_dev_eventing-contrib_gitlab_pkg_apis_bindings_v1alpha1_SecretValueFromSource", @@ -683,16 +608,13 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_bindings_v1alpha1_GitLabBindingStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -701,7 +623,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -710,7 +631,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -724,7 +644,6 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_bindings_v1alpha1_SecretValueFromSource": { "type": "object", - "description": "", "properties": { "secretKeyRef": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" @@ -737,17 +656,14 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_GitLabSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "GitLabSource", "required": true }, @@ -771,17 +687,14 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_GitLabSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_GitLabSource", "existingJavaType": "io.fabric8.knative.eventing.contrib.gitlab.v1alpha1.GitLabSource" @@ -789,7 +702,6 @@ }, "kind": { "type": "string", - "description": "", "default": "GitLabSourceList", "required": true }, @@ -805,7 +717,6 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_GitLabSourceSpec": { "type": "object", - "description": "", "properties": { "accessToken": { "$ref": "#/definitions/knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_SecretValueFromSource", @@ -813,31 +724,26 @@ }, "eventTypes": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "projectUrl": { - "type": "string", - "description": "" + "type": "string" }, "secretToken": { "$ref": "#/definitions/knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_SecretValueFromSource", "existingJavaType": "io.fabric8.knative.eventing.contrib.gitlab.v1alpha1.SecretValueFromSource" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sink": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Destination", "existingJavaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.Destination" }, "sslverify": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.knative.eventing.contrib.gitlab.v1alpha1.GitLabSourceSpec", @@ -847,20 +753,16 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_GitLabSourceStatus": { "type": "object", - "description": "", "properties": { "Id": { - "type": "string", - "description": "" + "type": "string" }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -869,7 +771,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -878,7 +779,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -892,7 +792,6 @@ }, "knative_dev_eventing-contrib_gitlab_pkg_apis_sources_v1alpha1_SecretValueFromSource": { "type": "object", - "description": "", "properties": { "secretKeyRef": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" @@ -905,17 +804,14 @@ }, "knative_dev_eventing-contrib_kafka_channel_pkg_apis_messaging_v1beta1_KafkaChannel": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KafkaChannel", "required": true }, @@ -939,17 +835,14 @@ }, "knative_dev_eventing-contrib_kafka_channel_pkg_apis_messaging_v1beta1_KafkaChannelList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_channel_pkg_apis_messaging_v1beta1_KafkaChannel", "existingJavaType": "io.fabric8.knative.eventing.contrib.kafka.v1beta1.KafkaChannel" @@ -957,7 +850,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KafkaChannelList", "required": true }, @@ -973,23 +865,19 @@ }, "knative_dev_eventing-contrib_kafka_channel_pkg_apis_messaging_v1beta1_KafkaChannelSpec": { "type": "object", - "description": "", "properties": { "delivery": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_DeliverySpec", "existingJavaType": "io.fabric8.knative.internal.eventing.pkg.apis.duck.v1.DeliverySpec" }, "numPartitions": { - "type": "integer", - "description": "" + "type": "integer" }, "replicationFactor": { - "type": "integer", - "description": "" + "type": "integer" }, "subscribers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_SubscriberSpec", @@ -1004,7 +892,6 @@ }, "knative_dev_eventing-contrib_kafka_channel_pkg_apis_messaging_v1beta1_KafkaChannelStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Addressable", @@ -1012,12 +899,10 @@ }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -1030,12 +915,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "subscribers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_SubscriberStatus", @@ -1050,17 +933,14 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "bindings.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KafkaBinding", "required": true }, @@ -1084,17 +964,14 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "bindings.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaBinding", "existingJavaType": "io.fabric8.knative.eventing.contrib.kafka.v1beta1.KafkaBinding" @@ -1102,7 +979,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KafkaBindingList", "required": true }, @@ -1118,14 +994,11 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaBindingSpec": { "type": "object", - "description": "", "properties": { "bootstrapServers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "net": { @@ -1144,16 +1017,13 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaBindingStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -1162,7 +1032,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1173,7 +1042,6 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaNetSpec": { "type": "object", - "description": "", "properties": { "sasl": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaSASLSpec", @@ -1191,11 +1059,9 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaSASLSpec": { "type": "object", - "description": "", "properties": { "enable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "password": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_SecretValueFromSource", @@ -1213,7 +1079,6 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaTLSSpec": { "type": "object", - "description": "", "properties": { "caCert": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_SecretValueFromSource", @@ -1224,8 +1089,7 @@ "existingJavaType": "io.fabric8.knative.eventing.contrib.kafka.v1beta1.SecretValueFromSource" }, "enable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "key": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_SecretValueFromSource", @@ -1239,7 +1103,6 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_SecretValueFromSource": { "type": "object", - "description": "", "properties": { "secretKeyRef": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecretKeySelector" @@ -1252,17 +1115,14 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_sources_v1beta1_KafkaSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "KafkaSource", "required": true }, @@ -1286,17 +1146,14 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_sources_v1beta1_KafkaSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_source_pkg_apis_sources_v1beta1_KafkaSource", "existingJavaType": "io.fabric8.knative.eventing.contrib.kafka.v1beta1.KafkaSource" @@ -1304,7 +1161,6 @@ }, "kind": { "type": "string", - "description": "", "default": "KafkaSourceList", "required": true }, @@ -1320,14 +1176,11 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_sources_v1beta1_KafkaSourceSpec": { "type": "object", - "description": "", "properties": { "bootstrapServers": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } }, "ceOverrides": { @@ -1335,8 +1188,7 @@ "existingJavaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventOverrides" }, "consumerGroup": { - "type": "string", - "description": "" + "type": "string" }, "net": { "$ref": "#/definitions/knative_dev_eventing-contrib_kafka_source_pkg_apis_bindings_v1beta1_KafkaNetSpec", @@ -1348,10 +1200,8 @@ }, "topics": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1362,16 +1212,13 @@ }, "knative_dev_eventing-contrib_kafka_source_pkg_apis_sources_v1beta1_KafkaSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -1380,7 +1227,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -1389,7 +1235,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -1403,17 +1248,14 @@ }, "knative_dev_eventing-contrib_prometheus_pkg_apis_sources_v1alpha1_PrometheusSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PrometheusSource", "required": true }, @@ -1437,17 +1279,14 @@ }, "knative_dev_eventing-contrib_prometheus_pkg_apis_sources_v1alpha1_PrometheusSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing-contrib_prometheus_pkg_apis_sources_v1alpha1_PrometheusSource", "existingJavaType": "io.fabric8.knative.eventing.contrib.prometheus.v1alpha1.PrometheusSource" @@ -1455,7 +1294,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PrometheusSourceList", "required": true }, @@ -1471,39 +1309,31 @@ }, "knative_dev_eventing-contrib_prometheus_pkg_apis_sources_v1alpha1_PrometheusSourceSpec": { "type": "object", - "description": "", "properties": { "authTokenFile": { - "type": "string", - "description": "" + "type": "string" }, "caCertConfigMap": { - "type": "string", - "description": "" + "type": "string" }, "promQL": { - "type": "string", - "description": "" + "type": "string" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "serverURL": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sink": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Destination", "existingJavaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.Destination" }, "step": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.eventing.contrib.prometheus.v1alpha1.PrometheusSourceSpec", @@ -1513,16 +1343,13 @@ }, "knative_dev_eventing-contrib_prometheus_pkg_apis_sources_v1alpha1_PrometheusSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -1531,7 +1358,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -1540,7 +1366,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -1554,16 +1379,13 @@ }, "knative_dev_eventing_pkg_apis_duck_v1_DeliverySpec": { "type": "object", - "description": "", "properties": { "backoffDelay": { "type": "string", - "description": "", "existingJavaType": "String" }, "backoffPolicy": { "type": "string", - "description": "", "existingJavaType": "String" }, "deadLetterSink": { @@ -1572,7 +1394,6 @@ }, "retry": { "type": "integer", - "description": "", "existingJavaType": "Integer" } }, @@ -1583,7 +1404,6 @@ }, "knative_dev_eventing_pkg_apis_duck_v1_SubscriberSpec": { "type": "object", - "description": "", "properties": { "delivery": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_DeliverySpec", @@ -1591,7 +1411,6 @@ }, "generation": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "replyUri": { @@ -1601,8 +1420,7 @@ "existingJavaType": "java.lang.String" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.internal.eventing.pkg.apis.duck.v1.SubscriberSpec", @@ -1612,24 +1430,19 @@ }, "knative_dev_eventing_pkg_apis_duck_v1_SubscriberStatus": { "type": "object", - "description": "", "properties": { "message": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "ready": { - "type": "string", - "description": "" + "type": "string" }, "uid": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.internal.eventing.pkg.apis.duck.v1.SubscriberStatus", @@ -1639,17 +1452,14 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_Broker": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Broker", "required": true }, @@ -1673,17 +1483,14 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_BrokerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_eventing_v1_Broker", "existingJavaType": "io.fabric8.knative.eventing.v1.Broker" @@ -1691,7 +1498,6 @@ }, "kind": { "type": "string", - "description": "", "default": "BrokerList", "required": true }, @@ -1707,7 +1513,6 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_BrokerSpec": { "type": "object", - "description": "", "properties": { "config": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_KReference", @@ -1725,7 +1530,6 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_BrokerStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Addressable", @@ -1733,12 +1537,10 @@ }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -1747,7 +1549,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1758,17 +1559,14 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_Trigger": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Trigger", "required": true }, @@ -1792,11 +1590,9 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_TriggerFilter": { "type": "object", - "description": "", "properties": { "attributes": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" } }, @@ -1807,17 +1603,14 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_TriggerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_eventing_v1_Trigger", "existingJavaType": "io.fabric8.knative.eventing.v1.Trigger" @@ -1825,7 +1618,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TriggerList", "required": true }, @@ -1841,11 +1633,9 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_TriggerSpec": { "type": "object", - "description": "", "properties": { "broker": { - "type": "string", - "description": "" + "type": "string" }, "filter": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_eventing_v1_TriggerFilter", @@ -1863,16 +1653,13 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1_TriggerStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -1881,7 +1668,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "subscriberUri": { @@ -1895,17 +1681,14 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1beta1_EventType": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EventType", "required": true }, @@ -1929,17 +1712,14 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1beta1_EventTypeList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_eventing_v1beta1_EventType", "existingJavaType": "io.fabric8.knative.eventing.v1beta1.EventType" @@ -1947,7 +1727,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventTypeList", "required": true }, @@ -1963,29 +1742,24 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1beta1_EventTypeSpec": { "type": "object", - "description": "", "properties": { "broker": { - "type": "string", - "description": "" + "type": "string" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "schema": { "existingJavaType": "java.lang.String" }, "schemaData": { - "type": "string", - "description": "" + "type": "string" }, "source": { "existingJavaType": "java.lang.String" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.eventing.v1beta1.EventTypeSpec", @@ -1995,16 +1769,13 @@ }, "knative_dev_eventing_pkg_apis_eventing_v1beta1_EventTypeStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2013,7 +1784,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -2024,17 +1794,14 @@ }, "knative_dev_eventing_pkg_apis_flows_v1_Sequence": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Sequence", "required": true }, @@ -2058,7 +1825,6 @@ }, "knative_dev_eventing_pkg_apis_flows_v1_SequenceChannelStatus": { "type": "object", - "description": "", "properties": { "channel": { "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -2075,17 +1841,14 @@ }, "knative_dev_eventing_pkg_apis_flows_v1_SequenceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "eventing.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_flows_v1_Sequence", "existingJavaType": "io.fabric8.knative.flows.v1.Sequence" @@ -2093,7 +1856,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SequenceList", "required": true }, @@ -2109,7 +1871,6 @@ }, "knative_dev_eventing_pkg_apis_flows_v1_SequenceSpec": { "type": "object", - "description": "", "properties": { "channelTemplate": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_messaging_v1_ChannelTemplateSpec", @@ -2121,7 +1882,6 @@ }, "steps": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_flows_v1_SequenceStep", "existingJavaType": "io.fabric8.knative.flows.v1.SequenceStep" @@ -2135,7 +1895,6 @@ }, "knative_dev_eventing_pkg_apis_flows_v1_SequenceStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Addressable", @@ -2143,12 +1902,10 @@ }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "channelStatuses": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_flows_v1_SequenceChannelStatus", "existingJavaType": "io.fabric8.knative.flows.v1.SequenceChannelStatus" @@ -2156,7 +1913,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2165,12 +1921,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "subscriptionStatuses": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_flows_v1_SequenceSubscriptionStatus", "existingJavaType": "io.fabric8.knative.flows.v1.SequenceSubscriptionStatus" @@ -2184,7 +1938,6 @@ }, "knative_dev_eventing_pkg_apis_flows_v1_SequenceStep": { "type": "object", - "description": "", "properties": { "delivery": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_DeliverySpec", @@ -2205,7 +1958,6 @@ }, "knative_dev_eventing_pkg_apis_flows_v1_SequenceSubscriptionStatus": { "type": "object", - "description": "", "properties": { "ready": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2222,17 +1974,14 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_Channel": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Channel", "required": true }, @@ -2256,17 +2005,14 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_ChannelList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_messaging_v1_Channel", "existingJavaType": "io.fabric8.knative.messaging.v1.Channel" @@ -2274,7 +2020,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ChannelList", "required": true }, @@ -2290,7 +2035,6 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_ChannelSpec": { "type": "object", - "description": "", "properties": { "channelTemplate": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_messaging_v1_ChannelTemplateSpec", @@ -2302,7 +2046,6 @@ }, "subscribers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_SubscriberSpec", @@ -2317,7 +2060,6 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_ChannelStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Addressable", @@ -2325,7 +2067,6 @@ }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "channel": { @@ -2334,7 +2075,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2347,12 +2087,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "subscribers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_SubscriberStatus", @@ -2367,15 +2105,12 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_ChannelTemplateSpec": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "spec": { "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -2388,17 +2123,14 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_InMemoryChannel": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "InMemoryChannel", "required": true }, @@ -2422,17 +2154,14 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_InMemoryChannelList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_messaging_v1_InMemoryChannel", "existingJavaType": "io.fabric8.knative.messaging.v1.InMemoryChannel" @@ -2440,7 +2169,6 @@ }, "kind": { "type": "string", - "description": "", "default": "InMemoryChannelList", "required": true }, @@ -2456,7 +2184,6 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_InMemoryChannelSpec": { "type": "object", - "description": "", "properties": { "delivery": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_DeliverySpec", @@ -2464,7 +2191,6 @@ }, "subscribers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_SubscriberSpec", @@ -2479,7 +2205,6 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_InMemoryChannelStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Addressable", @@ -2487,12 +2212,10 @@ }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2505,12 +2228,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "subscribers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_duck_v1_SubscriberStatus", @@ -2525,17 +2246,14 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_Subscription": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Subscription", "required": true }, @@ -2559,17 +2277,14 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_SubscriptionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "messaging.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_messaging_v1_Subscription", "existingJavaType": "io.fabric8.knative.messaging.v1.Subscription" @@ -2577,7 +2292,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SubscriptionList", "required": true }, @@ -2593,7 +2307,6 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_SubscriptionSpec": { "type": "object", - "description": "", "properties": { "channel": { "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectReference" @@ -2618,16 +2331,13 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_SubscriptionStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2636,7 +2346,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "physicalSubscription": { @@ -2651,7 +2360,6 @@ }, "knative_dev_eventing_pkg_apis_messaging_v1_SubscriptionStatusPhysicalSubscription": { "type": "object", - "description": "", "properties": { "deadLetterSinkUri": { "existingJavaType": "java.lang.String" @@ -2670,15 +2378,12 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_APIVersionKind": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.sources.v1beta1.APIVersionKind", @@ -2688,15 +2393,12 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_APIVersionKindSelector": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -2709,17 +2411,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ApiServerSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ApiServerSource", "required": true }, @@ -2743,17 +2442,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ApiServerSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_sources_v1beta1_ApiServerSource", "existingJavaType": "io.fabric8.knative.sources.v1beta1.ApiServerSource" @@ -2761,7 +2457,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ApiServerSourceList", "required": true }, @@ -2777,15 +2472,13 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ApiServerSourceSpec": { "type": "object", - "description": "", "properties": { "ceOverrides": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventOverrides", "existingJavaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventOverrides" }, "mode": { - "type": "string", - "description": "" + "type": "string" }, "owner": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_sources_v1beta1_APIVersionKind", @@ -2793,7 +2486,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_sources_v1beta1_APIVersionKindSelector", @@ -2801,8 +2493,7 @@ } }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "sink": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Destination", @@ -2816,16 +2507,13 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ApiServerSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -2834,7 +2522,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2843,7 +2530,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -2857,17 +2543,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ContainerSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ContainerSource", "required": true }, @@ -2891,17 +2574,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ContainerSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_sources_v1beta1_ContainerSource", "existingJavaType": "io.fabric8.knative.sources.v1beta1.ContainerSource" @@ -2909,7 +2589,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ContainerSourceList", "required": true }, @@ -2925,7 +2604,6 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ContainerSourceSpec": { "type": "object", - "description": "", "properties": { "ceOverrides": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventOverrides", @@ -2946,16 +2624,13 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_ContainerSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -2964,7 +2639,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -2973,7 +2647,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -2987,17 +2660,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_PingSource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PingSource", "required": true }, @@ -3021,17 +2691,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_PingSourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_sources_v1beta1_PingSource", "existingJavaType": "io.fabric8.knative.sources.v1beta1.PingSource" @@ -3039,7 +2706,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PingSourceList", "required": true }, @@ -3055,27 +2721,23 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_PingSourceSpec": { "type": "object", - "description": "", "properties": { "ceOverrides": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventOverrides", "existingJavaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventOverrides" }, "jsonData": { - "type": "string", - "description": "" + "type": "string" }, "schedule": { - "type": "string", - "description": "" + "type": "string" }, "sink": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Destination", "existingJavaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.Destination" }, "timezone": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.sources.v1beta1.PingSourceSpec", @@ -3085,16 +2747,13 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_PingSourceStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -3103,7 +2762,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -3112,7 +2770,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -3126,17 +2783,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_SinkBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "SinkBinding", "required": true }, @@ -3160,17 +2814,14 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_SinkBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "sources.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_eventing_pkg_apis_sources_v1beta1_SinkBinding", "existingJavaType": "io.fabric8.knative.sources.v1beta1.SinkBinding" @@ -3178,7 +2829,6 @@ }, "kind": { "type": "string", - "description": "", "default": "SinkBindingList", "required": true }, @@ -3194,7 +2844,6 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_SinkBindingSpec": { "type": "object", - "description": "", "properties": { "ceOverrides": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventOverrides", @@ -3216,16 +2865,13 @@ }, "knative_dev_eventing_pkg_apis_sources_v1beta1_SinkBindingStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "ceAttributes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_CloudEventAttributes", @@ -3234,7 +2880,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -3243,7 +2888,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "sinkUri": { @@ -3257,7 +2901,6 @@ }, "knative_dev_pkg_apis_Condition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "existingJavaType": "java.lang.String" @@ -3290,7 +2933,6 @@ }, "knative_dev_pkg_apis_duck_v1_Addressable": { "type": "object", - "description": "", "properties": { "url": { "existingJavaType": "java.lang.String" @@ -3303,15 +2945,12 @@ }, "knative_dev_pkg_apis_duck_v1_CloudEventAttributes": { "type": "object", - "description": "", "properties": { "source": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.CloudEventAttributes", @@ -3321,11 +2960,9 @@ }, "knative_dev_pkg_apis_duck_v1_CloudEventOverrides": { "type": "object", - "description": "", "properties": { "extensions": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" } }, @@ -3336,7 +2973,6 @@ }, "knative_dev_pkg_apis_duck_v1_Destination": { "type": "object", - "description": "", "properties": { "ref": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_KReference", @@ -3353,23 +2989,18 @@ }, "knative_dev_pkg_apis_duck_v1_KReference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.internal.pkg.apis.duck.v1.KReference", @@ -3379,23 +3010,18 @@ }, "knative_dev_pkg_tracker_Reference": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" }, "selector": { "existingJavaType": "io.fabric8.kubernetes.api.model.LabelSelector" @@ -3408,17 +3034,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_Configuration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Configuration", "required": true }, @@ -3442,17 +3065,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_ConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_Configuration", "existingJavaType": "io.fabric8.knative.serving.v1.Configuration" @@ -3460,7 +3080,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigurationList", "required": true }, @@ -3476,7 +3095,6 @@ }, "knative_dev_serving_pkg_apis_serving_v1_ConfigurationSpec": { "type": "object", - "description": "", "properties": { "template": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_RevisionTemplateSpec", @@ -3490,16 +3108,13 @@ }, "knative_dev_serving_pkg_apis_serving_v1_ConfigurationStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -3507,16 +3122,13 @@ } }, "latestCreatedRevisionName": { - "type": "string", - "description": "" + "type": "string" }, "latestReadyRevisionName": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -3527,15 +3139,12 @@ }, "knative_dev_serving_pkg_apis_serving_v1_ContainerStatuses": { "type": "object", - "description": "", "properties": { "imageDigest": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.serving.v1.ContainerStatuses", @@ -3545,17 +3154,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_Revision": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Revision", "required": true }, @@ -3579,17 +3185,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_RevisionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_Revision", "existingJavaType": "io.fabric8.knative.serving.v1.Revision" @@ -3597,7 +3200,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RevisionList", "required": true }, @@ -3613,11 +3215,9 @@ }, "knative_dev_serving_pkg_apis_serving_v1_RevisionSpec": { "type": "object", - "description": "", "properties": { "activeDeadlineSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "affinity": { @@ -3625,17 +3225,14 @@ }, "automountServiceAccountToken": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "containerConcurrency": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "containers": { "type": "array", - "description": "", "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Container" } @@ -3644,17 +3241,14 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.PodDNSConfig" }, "dnsPolicy": { - "type": "string", - "description": "" + "type": "string" }, "enableServiceLinks": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "ephemeralContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.EphemeralContainer" @@ -3662,31 +3256,25 @@ }, "hostAliases": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.HostAlias" } }, "hostIPC": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostPID": { - "type": "boolean", - "description": "" + "type": "boolean" }, "hostname": { - "type": "string", - "description": "" + "type": "string" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" @@ -3694,94 +3282,76 @@ }, "initContainers": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Container" } }, "nodeName": { - "type": "string", - "description": "" + "type": "string" }, "nodeSelector": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "overhead": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,io.fabric8.kubernetes.api.model.Quantity\u003e" }, "preemptionPolicy": { "type": "string", - "description": "", "existingJavaType": "String" }, "priority": { "type": "integer", - "description": "", "existingJavaType": "Integer" }, "priorityClassName": { - "type": "string", - "description": "" + "type": "string" }, "readinessGates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.PodReadinessGate" } }, "restartPolicy": { - "type": "string", - "description": "" + "type": "string" }, "runtimeClassName": { "type": "string", - "description": "", "existingJavaType": "String" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "serviceAccount": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "shareProcessNamespace": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "subdomain": { - "type": "string", - "description": "" + "type": "string" }, "terminationGracePeriodSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "timeoutSeconds": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration" @@ -3789,7 +3359,6 @@ }, "topologySpreadConstraints": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.TopologySpreadConstraint" @@ -3797,7 +3366,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Volume" @@ -3811,16 +3379,13 @@ }, "knative_dev_serving_pkg_apis_serving_v1_RevisionStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -3829,7 +3394,6 @@ }, "containerStatuses": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_ContainerStatuses", @@ -3837,21 +3401,17 @@ } }, "imageDigest": { - "type": "string", - "description": "" + "type": "string" }, "logUrl": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "serviceName": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.knative.serving.v1.RevisionStatus", @@ -3861,7 +3421,6 @@ }, "knative_dev_serving_pkg_apis_serving_v1_RevisionTemplateSpec": { "type": "object", - "description": "", "properties": { "metadata": { "existingJavaType": "io.fabric8.kubernetes.api.model.ObjectMeta" @@ -3878,17 +3437,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_Route": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Route", "required": true }, @@ -3912,17 +3468,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_RouteList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_Route", "existingJavaType": "io.fabric8.knative.serving.v1.Route" @@ -3930,7 +3483,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RouteList", "required": true }, @@ -3946,11 +3498,9 @@ }, "knative_dev_serving_pkg_apis_serving_v1_RouteSpec": { "type": "object", - "description": "", "properties": { "traffic": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_TrafficTarget", @@ -3965,7 +3515,6 @@ }, "knative_dev_serving_pkg_apis_serving_v1_RouteStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Addressable", @@ -3973,12 +3522,10 @@ }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -3987,12 +3534,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "traffic": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_TrafficTarget", @@ -4010,17 +3555,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_Service": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -4044,17 +3586,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1_ServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_Service", "existingJavaType": "io.fabric8.knative.serving.v1.Service" @@ -4062,7 +3601,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, @@ -4078,7 +3616,6 @@ }, "knative_dev_serving_pkg_apis_serving_v1_ServiceSpec": { "type": "object", - "description": "", "properties": { "template": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_RevisionTemplateSpec", @@ -4086,7 +3623,6 @@ }, "traffic": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_TrafficTarget", @@ -4101,7 +3637,6 @@ }, "knative_dev_serving_pkg_apis_serving_v1_ServiceStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1_Addressable", @@ -4109,12 +3644,10 @@ }, "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -4122,21 +3655,17 @@ } }, "latestCreatedRevisionName": { - "type": "string", - "description": "" + "type": "string" }, "latestReadyRevisionName": { - "type": "string", - "description": "" + "type": "string" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "traffic": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1_TrafficTarget", @@ -4154,29 +3683,23 @@ }, "knative_dev_serving_pkg_apis_serving_v1_TrafficTarget": { "type": "object", - "description": "", "properties": { "configurationName": { - "type": "string", - "description": "" + "type": "string" }, "latestRevision": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "percent": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "revisionName": { - "type": "string", - "description": "" + "type": "string" }, "tag": { - "type": "string", - "description": "" + "type": "string" }, "url": { "existingJavaType": "java.lang.String" @@ -4189,17 +3712,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_Configuration": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Configuration", "required": true }, @@ -4223,17 +3743,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_ConfigurationList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1beta1_Configuration", "existingJavaType": "io.fabric8.knative.serving.v1beta1.Configuration" @@ -4241,7 +3758,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConfigurationList", "required": true }, @@ -4257,17 +3773,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_Revision": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Revision", "required": true }, @@ -4291,17 +3804,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_RevisionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1beta1_Revision", "existingJavaType": "io.fabric8.knative.serving.v1beta1.Revision" @@ -4309,7 +3819,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RevisionList", "required": true }, @@ -4325,17 +3834,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_Route": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Route", "required": true }, @@ -4359,17 +3865,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_RouteList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1beta1_Route", "existingJavaType": "io.fabric8.knative.serving.v1beta1.Route" @@ -4377,7 +3880,6 @@ }, "kind": { "type": "string", - "description": "", "default": "RouteList", "required": true }, @@ -4393,17 +3895,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_Service": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Service", "required": true }, @@ -4427,17 +3926,14 @@ }, "knative_dev_serving_pkg_apis_serving_v1beta1_ServiceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "serving.knative.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/knative_dev_serving_pkg_apis_serving_v1beta1_Service", "existingJavaType": "io.fabric8.knative.serving.v1beta1.Service" @@ -4445,7 +3941,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceList", "required": true }, diff --git a/extensions/service-catalog/model/src/main/resources/schema/servicecatalog-schema.json b/extensions/service-catalog/model/src/main/resources/schema/servicecatalog-schema.json index 9d0d39787f4..ac52a4ab5d0 100644 --- a/extensions/service-catalog/model/src/main/resources/schema/servicecatalog-schema.json +++ b/extensions/service-catalog/model/src/main/resources/schema/servicecatalog-schema.json @@ -4,20 +4,16 @@ "definitions": { "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_AddKeyTransform": { "type": "object", - "description": "", "properties": { "jsonPathExpression": { "type": "string", - "description": "", "existingJavaType": "String" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "stringValue": { "type": "string", - "description": "", "existingJavaType": "String" }, "value": { @@ -31,7 +27,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_AddKeysFromTransform": { "type": "object", - "description": "", "properties": { "secretRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ObjectReference", @@ -45,7 +40,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_BasicAuthConfig": { "type": "object", - "description": "", "properties": { "secretRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_LocalObjectReference", @@ -59,7 +53,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_BearerTokenAuthConfig": { "type": "object", - "description": "", "properties": { "secretRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_LocalObjectReference", @@ -73,24 +66,19 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_CatalogRestrictions": { "type": "object", - "description": "", "properties": { "serviceClass": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "servicePlan": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -101,7 +89,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterBasicAuthConfig": { "type": "object", - "description": "", "properties": { "secretRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ObjectReference", @@ -115,7 +102,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterBearerTokenAuthConfig": { "type": "object", - "description": "", "properties": { "secretRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ObjectReference", @@ -129,11 +115,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ClusterObjectReference", @@ -143,17 +127,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceBroker": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceBroker", "required": true }, @@ -176,7 +157,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceBrokerAuthInfo": { "type": "object", - "description": "", "properties": { "basic": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterBasicAuthConfig", @@ -194,17 +174,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceBrokerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceBroker", "existingJavaType": "io.fabric8.servicecatalog.api.model.ClusterServiceBroker" @@ -212,7 +189,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceBrokerList", "required": true }, @@ -228,7 +204,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceBrokerSpec": { "type": "object", - "description": "", "properties": { "authInfo": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceBrokerAuthInfo", @@ -242,24 +217,20 @@ "existingJavaType": "io.fabric8.servicecatalog.api.model.CatalogRestrictions" }, "insecureSkipTLSVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "relistBehavior": { - "type": "string", - "description": "" + "type": "string" }, "relistDuration": { "existingJavaType": "io.fabric8.kubernetes.api.model.Duration" }, "relistRequests": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ClusterServiceBrokerSpec", @@ -269,11 +240,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceBrokerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerCondition", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceBrokerCondition" @@ -287,7 +256,6 @@ }, "reconciledGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -298,17 +266,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceClass", "required": true }, @@ -331,17 +296,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceClass", "existingJavaType": "io.fabric8.servicecatalog.api.model.ClusterServiceClass" @@ -349,7 +311,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterServiceClassList", "required": true }, @@ -365,58 +326,46 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceClassSpec": { "type": "object", - "description": "", "properties": { "bindable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "bindingRetrievable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "clusterServiceBrokerName": { - "type": "string", - "description": "" + "type": "string" }, "defaultProvisionParameters": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "externalMetadata": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "planUpdatable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requires": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -427,11 +376,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServiceClassStatus": { "type": "object", - "description": "", "properties": { "removedFromBrokerCatalog": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.servicecatalog.api.model.ClusterServiceClassStatus", @@ -441,17 +388,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServicePlan": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterServicePlan", "required": true }, @@ -474,17 +418,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServicePlanList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServicePlan", "existingJavaType": "io.fabric8.servicecatalog.api.model.ClusterServicePlan" @@ -492,7 +433,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterServicePlanList", "required": true }, @@ -508,16 +448,13 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServicePlanSpec": { "type": "object", - "description": "", "properties": { "bindable": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "clusterServiceBrokerName": { - "type": "string", - "description": "" + "type": "string" }, "clusterServiceClassRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterObjectReference", @@ -527,23 +464,19 @@ "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "externalMetadata": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "free": { - "type": "boolean", - "description": "" + "type": "boolean" }, "instanceCreateParameterSchema": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" @@ -565,11 +498,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterServicePlanStatus": { "type": "object", - "description": "", "properties": { "removedFromBrokerCatalog": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.servicecatalog.api.model.ClusterServicePlanStatus", @@ -579,11 +510,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_LocalObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.LocalObjectReference", @@ -593,15 +522,12 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ObjectReference": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "namespace": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ObjectReference", @@ -611,7 +537,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ParametersFromSource": { "type": "object", - "description": "", "properties": { "secretKeyRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_SecretKeyReference", @@ -625,11 +550,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_RemoveKeyTransform": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.RemoveKeyTransform", @@ -639,15 +562,12 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_RenameKeyTransform": { "type": "object", - "description": "", "properties": { "from": { - "type": "string", - "description": "" + "type": "string" }, "to": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.RenameKeyTransform", @@ -657,15 +577,12 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_SecretKeyReference": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.SecretKeyReference", @@ -675,7 +592,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_SecretTransform": { "type": "object", - "description": "", "properties": { "addKey": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_AddKeyTransform", @@ -701,17 +617,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceBinding", "required": true }, @@ -735,26 +648,21 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBindingCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "existingJavaType": "java.lang.String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ServiceBindingCondition", @@ -764,17 +672,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBinding", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceBinding" @@ -782,7 +687,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceBindingList", "required": true }, @@ -798,11 +702,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBindingPropertiesState": { "type": "object", - "description": "", "properties": { "parameterChecksum": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" @@ -819,11 +721,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBindingSpec": { "type": "object", - "description": "", "properties": { "externalID": { - "type": "string", - "description": "" + "type": "string" }, "instanceRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_LocalObjectReference", @@ -834,7 +734,6 @@ }, "parametersFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ParametersFromSource", @@ -842,12 +741,10 @@ } }, "secretName": { - "type": "string", - "description": "" + "type": "string" }, "secretTransforms": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_SecretTransform", @@ -866,23 +763,19 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBindingStatus": { "type": "object", - "description": "", "properties": { "asyncOpInProgress": { - "type": "boolean", - "description": "" + "type": "boolean" }, "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBindingCondition", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceBindingCondition" } }, "currentOperation": { - "type": "string", - "description": "" + "type": "string" }, "externalProperties": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBindingPropertiesState", @@ -894,24 +787,20 @@ }, "lastOperation": { "type": "string", - "description": "", "existingJavaType": "String" }, "operationStartTime": { "existingJavaType": "java.lang.String" }, "orphanMitigationInProgress": { - "type": "boolean", - "description": "" + "type": "boolean" }, "reconciledGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "unbindStatus": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ServiceBindingStatus", @@ -921,17 +810,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBroker": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceBroker", "required": true }, @@ -955,7 +841,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerAuthInfo": { "type": "object", - "description": "", "properties": { "basic": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_BasicAuthConfig", @@ -973,26 +858,21 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "existingJavaType": "java.lang.String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ServiceBrokerCondition", @@ -1002,17 +882,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBroker", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceBroker" @@ -1020,7 +897,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceBrokerList", "required": true }, @@ -1036,7 +912,6 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerSpec": { "type": "object", - "description": "", "properties": { "authInfo": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerAuthInfo", @@ -1050,24 +925,20 @@ "existingJavaType": "io.fabric8.servicecatalog.api.model.CatalogRestrictions" }, "insecureSkipTLSVerify": { - "type": "boolean", - "description": "" + "type": "boolean" }, "relistBehavior": { - "type": "string", - "description": "" + "type": "string" }, "relistDuration": { "existingJavaType": "io.fabric8.kubernetes.api.model.Duration" }, "relistRequests": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "url": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ServiceBrokerSpec", @@ -1077,11 +948,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerStatus": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceBrokerCondition", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceBrokerCondition" @@ -1095,7 +964,6 @@ }, "reconciledGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1106,17 +974,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceClass", "required": true }, @@ -1140,17 +1005,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceClass", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceClass" @@ -1158,7 +1020,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceClassList", "required": true }, @@ -1174,58 +1035,46 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceClassSpec": { "type": "object", - "description": "", "properties": { "bindable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "bindingRetrievable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "defaultProvisionParameters": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "externalMetadata": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "planUpdatable": { - "type": "boolean", - "description": "" + "type": "boolean" }, "requires": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "serviceBrokerName": { - "type": "string", - "description": "" + "type": "string" }, "tags": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -1236,11 +1085,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceClassStatus": { "type": "object", - "description": "", "properties": { "removedFromBrokerCatalog": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.servicecatalog.api.model.ServiceClassStatus", @@ -1250,17 +1097,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstance": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServiceInstance", "required": true }, @@ -1284,26 +1128,21 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstanceCondition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "existingJavaType": "java.lang.String" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "reason": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.ServiceInstanceCondition", @@ -1313,17 +1152,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstanceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstance", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceInstance" @@ -1331,7 +1167,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServiceInstanceList", "required": true }, @@ -1347,30 +1182,24 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstancePropertiesState": { "type": "object", - "description": "", "properties": { "clusterServicePlanExternalID": { - "type": "string", - "description": "" + "type": "string" }, "clusterServicePlanExternalName": { - "type": "string", - "description": "" + "type": "string" }, "parameterChecksum": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "servicePlanExternalID": { - "type": "string", - "description": "" + "type": "string" }, "servicePlanExternalName": { - "type": "string", - "description": "" + "type": "string" }, "userInfo": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_UserInfo", @@ -1384,50 +1213,41 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstanceSpec": { "type": "object", - "description": "", "properties": { "clusterServiceClassExternalID": { - "type": "string", - "description": "" + "type": "string" }, "clusterServiceClassExternalName": { - "type": "string", - "description": "" + "type": "string" }, "clusterServiceClassName": { - "type": "string", - "description": "" + "type": "string" }, "clusterServiceClassRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterObjectReference", "existingJavaType": "io.fabric8.servicecatalog.api.model.ClusterObjectReference" }, "clusterServicePlanExternalID": { - "type": "string", - "description": "" + "type": "string" }, "clusterServicePlanExternalName": { - "type": "string", - "description": "" + "type": "string" }, "clusterServicePlanName": { - "type": "string", - "description": "" + "type": "string" }, "clusterServicePlanRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ClusterObjectReference", "existingJavaType": "io.fabric8.servicecatalog.api.model.ClusterObjectReference" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "parameters": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "parametersFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ParametersFromSource", @@ -1435,32 +1255,26 @@ } }, "serviceClassExternalID": { - "type": "string", - "description": "" + "type": "string" }, "serviceClassExternalName": { - "type": "string", - "description": "" + "type": "string" }, "serviceClassName": { - "type": "string", - "description": "" + "type": "string" }, "serviceClassRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_LocalObjectReference", "existingJavaType": "io.fabric8.servicecatalog.api.model.LocalObjectReference" }, "servicePlanExternalID": { - "type": "string", - "description": "" + "type": "string" }, "servicePlanExternalName": { - "type": "string", - "description": "" + "type": "string" }, "servicePlanName": { - "type": "string", - "description": "" + "type": "string" }, "servicePlanRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_LocalObjectReference", @@ -1468,7 +1282,6 @@ }, "updateRequests": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "userInfo": { @@ -1483,35 +1296,29 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstanceStatus": { "type": "object", - "description": "", "properties": { "asyncOpInProgress": { - "type": "boolean", - "description": "" + "type": "boolean" }, "conditions": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstanceCondition", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServiceInstanceCondition" } }, "currentOperation": { - "type": "string", - "description": "" + "type": "string" }, "dashboardURL": { "type": "string", - "description": "", "existingJavaType": "String" }, "defaultProvisionParameters": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "deprovisionStatus": { - "type": "string", - "description": "" + "type": "string" }, "externalProperties": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServiceInstancePropertiesState", @@ -1523,28 +1330,23 @@ }, "lastOperation": { "type": "string", - "description": "", "existingJavaType": "String" }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "operationStartTime": { "existingJavaType": "java.lang.String" }, "orphanMitigationInProgress": { - "type": "boolean", - "description": "" + "type": "boolean" }, "provisionStatus": { - "type": "string", - "description": "" + "type": "string" }, "reconciledGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -1555,17 +1357,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServicePlan": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ServicePlan", "required": true }, @@ -1589,17 +1388,14 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServicePlanList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "servicecatalog.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServicePlan", "existingJavaType": "io.fabric8.servicecatalog.api.model.ServicePlan" @@ -1607,7 +1403,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ServicePlanList", "required": true }, @@ -1623,34 +1418,28 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServicePlanSpec": { "type": "object", - "description": "", "properties": { "bindable": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "defaultProvisionParameters": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "externalID": { - "type": "string", - "description": "" + "type": "string" }, "externalMetadata": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "externalName": { - "type": "string", - "description": "" + "type": "string" }, "free": { - "type": "boolean", - "description": "" + "type": "boolean" }, "instanceCreateParameterSchema": { "existingJavaType": "java.util.Map\u003cString, Object\u003e" @@ -1665,8 +1454,7 @@ "existingJavaType": "java.util.Map\u003cString, Object\u003e" }, "serviceBrokerName": { - "type": "string", - "description": "" + "type": "string" }, "serviceClassRef": { "$ref": "#/definitions/github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_LocalObjectReference", @@ -1680,11 +1468,9 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_ServicePlanStatus": { "type": "object", - "description": "", "properties": { "removedFromBrokerCatalog": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.servicecatalog.api.model.ServicePlanStatus", @@ -1694,29 +1480,23 @@ }, "github_com_kubernetes-sigs_service-catalog_pkg_apis_servicecatalog_v1beta1_UserInfo": { "type": "object", - "description": "", "properties": { "extra": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,java.util.List\u003cString\u003e\u003e" }, "groups": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "uid": { - "type": "string", - "description": "" + "type": "string" }, "username": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.servicecatalog.api.model.UserInfo", diff --git a/extensions/tekton/model-triggers/src/main/resources/schema/tekton-schema-triggers.json b/extensions/tekton/model-triggers/src/main/resources/schema/tekton-schema-triggers.json index 2e70330f4af..7653094df23 100644 --- a/extensions/tekton/model-triggers/src/main/resources/schema/tekton-schema-triggers.json +++ b/extensions/tekton/model-triggers/src/main/resources/schema/tekton-schema-triggers.json @@ -4,15 +4,12 @@ "definitions": { "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_BitbucketInterceptor": { "type": "object", - "description": "", "properties": { "eventTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretRef": { @@ -27,15 +24,12 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELInterceptor": { "type": "object", - "description": "", "properties": { "filter": { - "type": "string", - "description": "" + "type": "string" }, "overlays": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELOverlay", @@ -50,15 +44,12 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_CELOverlay": { "type": "object", - "description": "", "properties": { "expression": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.triggers.v1alpha1.CELOverlay", @@ -68,17 +59,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterTriggerBinding", "required": true }, @@ -101,17 +89,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ClusterTriggerBinding", "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.ClusterTriggerBinding" @@ -119,7 +104,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterTriggerBindingList", "required": true }, @@ -135,17 +119,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListener": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "EventListener", "required": true }, @@ -169,11 +150,9 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerConfig": { "type": "object", - "description": "", "properties": { "generatedName": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerConfig", @@ -183,17 +162,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListener", "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListener" @@ -201,7 +177,6 @@ }, "kind": { "type": "string", - "description": "", "default": "EventListenerList", "required": true }, @@ -217,7 +192,6 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerSpec": { "type": "object", - "description": "", "properties": { "podTemplate": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_PodTemplate", @@ -225,20 +199,16 @@ }, "replicas": { "type": "integer", - "description": "", "existingJavaType": "Integer" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "serviceType": { - "type": "string", - "description": "" + "type": "string" }, "triggers": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerTrigger", "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerTrigger" @@ -252,7 +222,6 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerStatus": { "type": "object", - "description": "", "properties": { "address": { "$ref": "#/definitions/knative_dev_pkg_apis_duck_v1alpha1_Addressable", @@ -260,7 +229,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/knative_dev_pkg_apis_Condition", @@ -273,7 +241,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" } }, @@ -284,11 +251,9 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_EventListenerTrigger": { "type": "object", - "description": "", "properties": { "bindings": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecBinding", @@ -297,7 +262,6 @@ }, "interceptors": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerInterceptor", @@ -305,20 +269,17 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "template": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecTemplate", "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecTemplate" }, "triggerRef": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.triggers.v1alpha1.EventListenerTrigger", @@ -328,15 +289,12 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitHubInterceptor": { "type": "object", - "description": "", "properties": { "eventTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretRef": { @@ -351,15 +309,12 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_GitLabInterceptor": { "type": "object", - "description": "", "properties": { "eventTypes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "secretRef": { @@ -374,15 +329,12 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Param": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.triggers.v1alpha1.Param", @@ -392,20 +344,16 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ParamSpec": { "type": "object", - "description": "", "properties": { "default": { "type": "string", - "description": "", "existingJavaType": "String" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.triggers.v1alpha1.ParamSpec", @@ -415,16 +363,13 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_PodTemplate": { "type": "object", - "description": "", "properties": { "nodeSelector": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration" @@ -438,19 +383,15 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_SecretRef": { "type": "object", - "description": "", "properties": { "namespace": { - "type": "string", - "description": "" + "type": "string" }, "secretKey": { - "type": "string", - "description": "" + "type": "string" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.triggers.v1alpha1.SecretRef", @@ -460,17 +401,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBinding": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TriggerBinding", "required": true }, @@ -494,17 +432,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBinding", "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBinding" @@ -512,7 +447,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TriggerBindingList", "required": true }, @@ -528,11 +462,9 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingSpec": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_Param", @@ -547,7 +479,6 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingStatus": { "type": "object", - "description": "", "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerBindingStatus", "javaInterfaces": [ "io.fabric8.kubernetes.api.model.KubernetesResource" @@ -555,7 +486,6 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerInterceptor": { "type": "object", - "description": "", "properties": { "bitbucket": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_BitbucketInterceptor", @@ -585,23 +515,18 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecBinding": { "type": "object", - "description": "", "properties": { "apiversion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ref": { - "type": "string", - "description": "" + "type": "string" }, "spec": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerBindingSpec", @@ -615,15 +540,12 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerSpecTemplate": { "type": "object", - "description": "", "properties": { "apiversion": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerSpecTemplate", @@ -633,17 +555,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplate": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TriggerTemplate", "required": true }, @@ -667,17 +586,14 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "triggers.tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplate", "existingJavaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplate" @@ -685,7 +601,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TriggerTemplateList", "required": true }, @@ -701,11 +616,9 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateSpec": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_ParamSpec", @@ -714,7 +627,6 @@ }, "resourcetemplates": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.HasMetadata" @@ -728,7 +640,6 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_TriggerTemplateStatus": { "type": "object", - "description": "", "javaType": "io.fabric8.tekton.triggers.v1alpha1.TriggerTemplateStatus", "javaInterfaces": [ "io.fabric8.kubernetes.api.model.KubernetesResource" @@ -736,11 +647,9 @@ }, "github_com_tektoncd_triggers_pkg_apis_triggers_v1alpha1_WebhookInterceptor": { "type": "object", - "description": "", "properties": { "header": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Param" @@ -757,7 +666,6 @@ }, "knative_dev_pkg_apis_Condition": { "type": "object", - "description": "", "properties": { "lastTransitionTime": { "$ref": "#/definitions/knative_dev_pkg_apis_VolatileTime", @@ -791,7 +699,6 @@ }, "knative_dev_pkg_apis_VolatileTime": { "type": "object", - "description": "", "properties": { "Inner": { "existingJavaType": "java.lang.String" @@ -804,11 +711,9 @@ }, "knative_dev_pkg_apis_duck_v1alpha1_Addressable": { "type": "object", - "description": "", "properties": { "hostname": { - "type": "string", - "description": "" + "type": "string" }, "url": { "existingJavaType": "java.lang.String" 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 index 774c885e211..886a6ee8979 100644 --- 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 @@ -4,14 +4,12 @@ "definitions": { "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": { "type": "object", - "description": "", "properties": { "affinity": { "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "dnsConfig": { @@ -19,27 +17,22 @@ }, "dnsPolicy": { "type": "string", - "description": "", "existingJavaType": "String" }, "enableServiceLinks": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "nodeSelector": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "priorityClassName": { "type": "string", - "description": "", "existingJavaType": "String" }, "runtimeClassName": { "type": "string", - "description": "", "existingJavaType": "String" }, "securityContext": { @@ -47,7 +40,6 @@ }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration" @@ -55,7 +47,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Volume" @@ -69,15 +60,13 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_CloudEventDelivery": { "type": "object", - "description": "", "properties": { "status": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_CloudEventDeliveryState", "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.CloudEventDeliveryState" }, "target": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.CloudEventDelivery", @@ -87,19 +76,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_CloudEventDeliveryState": { "type": "object", - "description": "", "properties": { "condition": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "retryCount": { - "type": "integer", - "description": "" + "type": "integer" }, "sentAt": { "existingJavaType": "java.lang.String" @@ -112,17 +97,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ClusterTask": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterTask", "required": true }, @@ -141,17 +123,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ClusterTaskList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ClusterTask", "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.ClusterTask" @@ -159,7 +138,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterTaskList", "required": true }, @@ -175,17 +153,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Condition": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Condition", "required": true }, @@ -205,7 +180,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ConditionCheckStatus": { "type": "object", - "description": "", "properties": { "check": { "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerState" @@ -215,7 +189,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition" @@ -223,12 +196,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "podName": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "existingJavaType": "java.lang.String" @@ -241,17 +212,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ConditionList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Condition", "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.Condition" @@ -259,7 +227,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ConditionList", "required": true }, @@ -275,7 +242,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ConditionSpec": { "type": "object", - "description": "", "properties": { "check": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Step", @@ -283,7 +249,6 @@ }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_ParamSpec", @@ -292,7 +257,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceDeclaration", @@ -307,11 +271,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Inputs": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_ParamSpec", @@ -320,7 +282,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResource", @@ -335,11 +296,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Outputs": { "type": "object", - "description": "", "properties": { "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResource", @@ -348,7 +307,6 @@ }, "results": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TestResult", @@ -363,17 +321,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Pipeline": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pipeline", "required": true }, @@ -397,17 +352,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Pipeline", "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.Pipeline" @@ -415,7 +367,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PipelineList", "required": true }, @@ -431,15 +382,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRef": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.PipelineRef", @@ -449,11 +397,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineResourceBinding": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "resourceRef": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineResourceRef", @@ -471,15 +417,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineResourceRef": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.PipelineResourceRef", @@ -489,31 +432,25 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineResourceResult": { "type": "object", - "description": "", "properties": { "digest": { - "type": "string", - "description": "" + "type": "string" }, "key": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resourceRef": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineResourceRef", "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.PipelineResourceRef" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.PipelineResourceResult", @@ -523,17 +460,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRun": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PipelineRun", "required": true }, @@ -557,11 +491,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRunConditionCheckStatus": { "type": "object", - "description": "", "properties": { "conditionName": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_ConditionCheckStatus", @@ -575,17 +507,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRunList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRun", @@ -594,7 +523,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PipelineRunList", "required": true }, @@ -610,11 +538,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRunSpec": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Param", @@ -635,7 +561,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineResourceBinding", @@ -643,12 +568,10 @@ } }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRunSpecServiceAccountName", @@ -656,15 +579,13 @@ } }, "status": { - "type": "string", - "description": "" + "type": "string" }, "timeout": { "existingJavaType": "io.fabric8.kubernetes.api.model.Duration" }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspaceBinding", @@ -679,15 +600,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRunSpecServiceAccountName": { "type": "object", - "description": "", "properties": { "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "taskName": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.PipelineRunSpecServiceAccountName", @@ -697,14 +615,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRunStatus": { "type": "object", - "description": "", "properties": { "completionTime": { "existingJavaType": "java.lang.String" }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition" @@ -712,7 +628,6 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "startTime": { @@ -720,7 +635,6 @@ }, "taskRuns": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1alpha1.PipelineRunTaskRunStatus\u003e" } }, @@ -731,16 +645,13 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineRunTaskRunStatus": { "type": "object", - "description": "", "properties": { "conditionChecks": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1alpha1.PipelineRunConditionCheckStatus\u003e" }, "pipelineTaskName": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunStatus", @@ -754,11 +665,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineSpec": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_ParamSpec", @@ -767,7 +676,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineDeclaredResource", @@ -776,7 +684,6 @@ }, "tasks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineTask", @@ -785,7 +692,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspacePipelineDeclaration", @@ -800,7 +706,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineStatus": { "type": "object", - "description": "", "javaType": "io.fabric8.tekton.pipeline.v1alpha1.PipelineStatus", "javaInterfaces": [ "io.fabric8.kubernetes.api.model.KubernetesResource" @@ -808,11 +713,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineTask": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskCondition", @@ -820,12 +723,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Param", @@ -837,16 +738,13 @@ "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.PipelineTaskResources" }, "retries": { - "type": "integer", - "description": "" + "type": "integer" }, "runAfter": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "taskRef": { @@ -859,7 +757,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspacePipelineTaskBinding", @@ -874,15 +771,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_SidecarState": { "type": "object", - "description": "", "properties": { "imageID": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.SidecarState", @@ -892,19 +786,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_StepState": { "type": "object", - "description": "", "properties": { "container": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "running": { "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning" @@ -923,17 +813,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Task": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Task", "required": true }, @@ -953,17 +840,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Task", "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.Task" @@ -971,7 +855,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TaskList", "required": true }, @@ -987,27 +870,21 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResource": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetPath": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.TaskResource", @@ -1017,19 +894,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResourceBinding": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "paths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceRef": { @@ -1048,15 +921,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResult": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.TaskResult", @@ -1066,17 +936,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRun": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TaskRun", "required": true }, @@ -1100,11 +967,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunInputs": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Param", @@ -1113,7 +978,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResourceBinding", @@ -1128,17 +992,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRun", "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.TaskRun" @@ -1146,7 +1007,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TaskRunList", "required": true }, @@ -1162,11 +1022,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunOutputs": { "type": "object", - "description": "", "properties": { "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResourceBinding", @@ -1181,7 +1039,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunSpec": { "type": "object", - "description": "", "properties": { "inputs": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunInputs", @@ -1196,12 +1053,10 @@ "existingJavaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.pod.Template" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "taskRef": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_TaskRef", @@ -1216,7 +1071,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspaceBinding", @@ -1231,11 +1085,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunStatus": { "type": "object", - "description": "", "properties": { "cloudEvents": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_CloudEventDelivery", @@ -1247,7 +1099,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition" @@ -1255,16 +1106,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "podName": { - "type": "string", - "description": "" + "type": "string" }, "resourcesResult": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_PipelineResourceResult", @@ -1273,7 +1121,6 @@ }, "retriesStatus": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskRunStatus", @@ -1282,7 +1129,6 @@ }, "sidecars": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_SidecarState", @@ -1294,7 +1140,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_StepState", @@ -1309,7 +1154,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskSpec": { "type": "object", - "description": "", "properties": { "inputs": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_Inputs", @@ -1321,7 +1165,6 @@ }, "results": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TaskResult", @@ -1330,7 +1173,6 @@ }, "sidecars": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Container" @@ -1341,7 +1183,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Step", @@ -1350,7 +1191,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Volume" @@ -1358,7 +1198,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspaceDeclaration", @@ -1373,19 +1212,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha1_TestResult": { "type": "object", - "description": "", "properties": { "format": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "path": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1alpha1.TestResult", @@ -1395,11 +1230,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Param": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.ArrayOrString" @@ -1412,22 +1245,18 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_ParamSpec": { "type": "object", - "description": "", "properties": { "default": { "existingJavaType": "io.fabric8.tekton.pipeline.v1alpha1.ArrayOrString" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.ParamSpec", @@ -1437,15 +1266,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineDeclaredResource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.PipelineDeclaredResource", @@ -1455,15 +1281,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskCondition": { "type": "object", - "description": "", "properties": { "conditionRef": { - "type": "string", - "description": "" + "type": "string" }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Param", @@ -1472,7 +1295,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskInputResource", @@ -1487,24 +1309,19 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskInputResource": { "type": "object", - "description": "", "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.PipelineTaskInputResource", @@ -1514,15 +1331,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskOutputResource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.PipelineTaskOutputResource", @@ -1532,11 +1346,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskResources": { "type": "object", - "description": "", "properties": { "inputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskInputResource", @@ -1545,7 +1357,6 @@ }, "outputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_PipelineTaskOutputResource", @@ -1560,29 +1371,23 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_Step": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar" @@ -1590,19 +1395,16 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource" } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle" @@ -1612,13 +1414,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort" @@ -1631,8 +1431,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "script": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext" @@ -1641,28 +1440,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice" @@ -1670,15 +1463,13 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount" } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.Step", @@ -1688,19 +1479,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_TaskRef": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.TaskRef", @@ -1710,7 +1497,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspaceBinding": { "type": "object", - "description": "", "properties": { "configMap": { "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapVolumeSource" @@ -1719,8 +1505,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.EmptyDirVolumeSource" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "persistentVolumeClaim": { "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaimVolumeSource" @@ -1729,8 +1514,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretVolumeSource" }, "subPath": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.WorkspaceBinding", @@ -1740,23 +1524,18 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspaceDeclaration": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.WorkspaceDeclaration", @@ -1766,11 +1545,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspacePipelineDeclaration": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.WorkspacePipelineDeclaration", @@ -1780,15 +1557,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1alpha2_WorkspacePipelineTaskBinding": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "workspace": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1alpha1.internal.pipeline.pkg.apis.pipeline.v1alpha2.WorkspacePipelineTaskBinding", @@ -1798,17 +1572,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResource": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PipelineResource", "required": true }, @@ -1832,17 +1603,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1alpha1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResource", "existingJavaType": "io.fabric8.tekton.resource.v1alpha1.PipelineResource" @@ -1850,7 +1618,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PipelineResourceList", "required": true }, @@ -1866,11 +1633,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceSpec": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam", "existingJavaType": "io.fabric8.tekton.resource.v1alpha1.ResourceParam" @@ -1878,7 +1643,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam", @@ -1886,8 +1650,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.resource.v1alpha1.PipelineResourceSpec", @@ -1897,7 +1660,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceStatus": { "type": "object", - "description": "", "javaType": "io.fabric8.tekton.resource.v1alpha1.PipelineResourceStatus", "javaInterfaces": [ "io.fabric8.kubernetes.api.model.KubernetesResource" @@ -1905,27 +1667,21 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceDeclaration": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetPath": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.resource.v1alpha1.ResourceDeclaration", @@ -1935,15 +1691,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.resource.v1alpha1.ResourceParam", @@ -1953,19 +1706,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam": { "type": "object", - "description": "", "properties": { "fieldName": { - "type": "string", - "description": "" + "type": "string" }, "secretKey": { - "type": "string", - "description": "" + "type": "string" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.resource.v1alpha1.SecretParam", 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 index b9f9f01c031..66ad451c1e3 100644 --- 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 @@ -4,14 +4,12 @@ "definitions": { "github_com_tektoncd_pipeline_pkg_apis_pipeline_pod_Template": { "type": "object", - "description": "", "properties": { "affinity": { "existingJavaType": "io.fabric8.kubernetes.api.model.Affinity" }, "automountServiceAccountToken": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "dnsConfig": { @@ -19,21 +17,17 @@ }, "dnsPolicy": { "type": "string", - "description": "", "existingJavaType": "String" }, "enableServiceLinks": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "hostNetwork": { - "type": "boolean", - "description": "" + "type": "boolean" }, "imagePullSecrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.LocalObjectReference" @@ -41,29 +35,24 @@ }, "nodeSelector": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "priorityClassName": { "type": "string", - "description": "", "existingJavaType": "String" }, "runtimeClassName": { "type": "string", - "description": "", "existingJavaType": "String" }, "schedulerName": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "existingJavaType": "io.fabric8.kubernetes.api.model.PodSecurityContext" }, "tolerations": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Toleration" @@ -71,7 +60,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Volume" @@ -85,15 +73,13 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery": { "type": "object", - "description": "", "properties": { "status": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState", "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDeliveryState" }, "target": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.CloudEventDelivery", @@ -103,19 +89,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDeliveryState": { "type": "object", - "description": "", "properties": { "condition": { - "type": "string", - "description": "" + "type": "string" }, "message": { - "type": "string", - "description": "" + "type": "string" }, "retryCount": { - "type": "integer", - "description": "" + "type": "integer" }, "sentAt": { "existingJavaType": "java.lang.String" @@ -128,17 +110,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "ClusterTask", "required": true }, @@ -157,17 +136,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTaskList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ClusterTask", "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ClusterTask" @@ -175,7 +151,6 @@ }, "kind": { "type": "string", - "description": "", "default": "ClusterTaskList", "required": true }, @@ -191,11 +166,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConditionCheckStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "check": { @@ -206,7 +179,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition" @@ -214,12 +186,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "podName": { - "type": "string", - "description": "" + "type": "string" }, "startTime": { "existingJavaType": "java.lang.String" @@ -232,11 +202,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_EmbeddedTask": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "metadata": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata", @@ -244,7 +212,6 @@ }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec", @@ -257,7 +224,6 @@ }, "results": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult", @@ -266,7 +232,6 @@ }, "sidecars": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar", @@ -278,7 +243,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step", @@ -287,7 +251,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Volume" @@ -295,7 +258,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration", @@ -310,11 +272,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ArrayOrString" @@ -327,22 +287,18 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec": { "type": "object", - "description": "", "properties": { "default": { "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.ArrayOrString" }, "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.ParamSpec", @@ -352,17 +308,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Pipeline", "required": true }, @@ -382,19 +335,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineDeclaredResource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineDeclaredResource", @@ -404,17 +353,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Pipeline", "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Pipeline" @@ -422,7 +368,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PipelineList", "required": true }, @@ -438,15 +383,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRef": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRef", @@ -456,11 +398,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceBinding": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "resourceRef": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef", @@ -478,15 +418,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceRef", @@ -496,27 +433,22 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceResult": { "type": "object", - "description": "", "properties": { "key": { - "type": "string", - "description": "" + "type": "string" }, "resourceName": { - "type": "string", - "description": "" + "type": "string" }, "resourceRef": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceRef", "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceRef" }, "type": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResourceResult", @@ -526,19 +458,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineResult", @@ -548,17 +476,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "PipelineRun", "required": true }, @@ -582,11 +507,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunConditionCheckStatus": { "type": "object", - "description": "", "properties": { "conditionName": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ConditionCheckStatus", @@ -600,17 +523,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRun", @@ -619,7 +539,6 @@ }, "kind": { "type": "string", - "description": "", "default": "PipelineRunList", "required": true }, @@ -635,15 +554,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunResult", @@ -653,11 +569,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpec": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param", @@ -678,7 +592,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceBinding", @@ -686,12 +599,10 @@ } }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "serviceAccountNames": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpecServiceAccountName", @@ -699,12 +610,10 @@ } }, "status": { - "type": "string", - "description": "" + "type": "string" }, "taskRunSpecs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec", @@ -716,7 +625,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding", @@ -731,15 +639,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunSpecServiceAccountName": { "type": "object", - "description": "", "properties": { "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "taskName": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineRunSpecServiceAccountName", @@ -749,11 +654,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "completionTime": { @@ -761,7 +664,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition" @@ -769,12 +671,10 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "pipelineResults": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunResult", @@ -787,7 +687,6 @@ }, "skippedTasks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask", @@ -799,7 +698,6 @@ }, "taskRuns": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PipelineRunTaskRunStatus\u003e" } }, @@ -810,16 +708,13 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineRunTaskRunStatus": { "type": "object", - "description": "", "properties": { "conditionChecks": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,io.fabric8.tekton.pipeline.v1beta1.PipelineRunConditionCheckStatus\u003e" }, "pipelineTaskName": { - "type": "string", - "description": "" + "type": "string" }, "status": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus", @@ -833,15 +728,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineSpec": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "finally": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask", @@ -850,7 +742,6 @@ }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec", @@ -859,7 +750,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineDeclaredResource", @@ -868,7 +758,6 @@ }, "results": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResult", @@ -877,7 +766,6 @@ }, "tasks": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask", @@ -886,7 +774,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration", @@ -901,11 +788,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTask": { "type": "object", - "description": "", "properties": { "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskCondition", @@ -913,12 +798,10 @@ } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param", @@ -930,16 +813,13 @@ "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskResources" }, "retries": { - "type": "integer", - "description": "" + "type": "integer" }, "runAfter": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "taskRef": { @@ -955,7 +835,6 @@ }, "when": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression", @@ -964,7 +843,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding", @@ -979,15 +857,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskCondition": { "type": "object", - "description": "", "properties": { "conditionRef": { - "type": "string", - "description": "" + "type": "string" }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param", @@ -996,7 +871,6 @@ }, "resources": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskInputResource", @@ -1011,24 +885,19 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskInputResource": { "type": "object", - "description": "", "properties": { "from": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "name": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskInputResource", @@ -1038,16 +907,13 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskMetadata": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "labels": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" } }, @@ -1058,15 +924,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskOutputResource": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "resource": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskOutputResource", @@ -1076,11 +939,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskResources": { "type": "object", - "description": "", "properties": { "inputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskInputResource", @@ -1089,7 +950,6 @@ }, "outputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskOutputResource", @@ -1104,19 +964,16 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineTaskRunSpec": { "type": "object", - "description": "", "properties": { "pipelineTaskName": { - "type": "string", - "description": "" + "type": "string" }, "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", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineTaskRunSpec", @@ -1126,19 +983,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineWorkspaceDeclaration": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.PipelineWorkspaceDeclaration", @@ -1148,29 +1001,23 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar" @@ -1178,19 +1025,16 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource" } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle" @@ -1199,12 +1043,10 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort" @@ -1217,8 +1059,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "script": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext" @@ -1227,28 +1068,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice" @@ -1256,15 +1091,13 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount" } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.Sidecar", @@ -1274,19 +1107,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState": { "type": "object", - "description": "", "properties": { "container": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "running": { "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning" @@ -1305,11 +1134,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SkippedTask": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.SkippedTask", @@ -1319,29 +1146,23 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step": { "type": "object", - "description": "", "properties": { "args": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "command": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "env": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.EnvVar" @@ -1349,19 +1170,16 @@ }, "envFrom": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.EnvFromSource" } }, "image": { - "type": "string", - "description": "" + "type": "string" }, "imagePullPolicy": { - "type": "string", - "description": "" + "type": "string" }, "lifecycle": { "existingJavaType": "io.fabric8.kubernetes.api.model.Lifecycle" @@ -1371,13 +1189,11 @@ }, "name": { "type": "string", - "description": "", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "ports": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerPort" @@ -1390,8 +1206,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.ResourceRequirements" }, "script": { - "type": "string", - "description": "" + "type": "string" }, "securityContext": { "existingJavaType": "io.fabric8.kubernetes.api.model.SecurityContext" @@ -1400,28 +1215,22 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.Probe" }, "stdin": { - "type": "boolean", - "description": "" + "type": "boolean" }, "stdinOnce": { - "type": "boolean", - "description": "" + "type": "boolean" }, "terminationMessagePath": { - "type": "string", - "description": "" + "type": "string" }, "terminationMessagePolicy": { - "type": "string", - "description": "" + "type": "string" }, "tty": { - "type": "boolean", - "description": "" + "type": "boolean" }, "volumeDevices": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeDevice" @@ -1429,15 +1238,13 @@ }, "volumeMounts": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.VolumeMount" } }, "workingDir": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.Step", @@ -1447,19 +1254,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState": { "type": "object", - "description": "", "properties": { "container": { - "type": "string", - "description": "" + "type": "string" }, "imageID": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "running": { "existingJavaType": "io.fabric8.kubernetes.api.model.ContainerStateRunning" @@ -1478,17 +1281,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "Task", "required": true }, @@ -1508,17 +1308,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Task", "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.Task" @@ -1526,7 +1323,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TaskList", "required": true }, @@ -1542,19 +1338,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef": { "type": "object", - "description": "", "properties": { "apiVersion": { - "type": "string", - "description": "" + "type": "string" }, "kind": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRef", @@ -1564,27 +1356,21 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "targetPath": { - "type": "string", - "description": "" + "type": "string" }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResource", @@ -1594,19 +1380,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "paths": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { - "type": "string", - "description": "" + "type": "string" } }, "resourceRef": { @@ -1625,11 +1407,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResources": { "type": "object", - "description": "", "properties": { "inputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource", @@ -1638,7 +1418,6 @@ }, "outputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResource", @@ -1653,15 +1432,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskResult", @@ -1671,17 +1447,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "TaskRun", "required": true }, @@ -1705,17 +1478,14 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "tekton.dev/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRun", "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRun" @@ -1723,7 +1493,6 @@ }, "kind": { "type": "string", - "description": "", "default": "TaskRunList", "required": true }, @@ -1739,11 +1508,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResources": { "type": "object", - "description": "", "properties": { "inputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding", @@ -1752,7 +1519,6 @@ }, "outputs": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResourceBinding", @@ -1767,15 +1533,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResult", @@ -1785,11 +1548,9 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunSpec": { "type": "object", - "description": "", "properties": { "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Param", @@ -1805,12 +1566,10 @@ "existingJavaType": "io.fabric8.tekton.pipeline.v1beta1.TaskRunResources" }, "serviceAccountName": { - "type": "string", - "description": "" + "type": "string" }, "status": { - "type": "string", - "description": "" + "type": "string" }, "taskRef": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRef", @@ -1825,7 +1584,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding", @@ -1840,16 +1598,13 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus": { "type": "object", - "description": "", "properties": { "annotations": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" }, "cloudEvents": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_CloudEventDelivery", @@ -1861,7 +1616,6 @@ }, "conditions": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.knative.internal.pkg.apis.Condition" @@ -1869,16 +1623,13 @@ }, "observedGeneration": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "podName": { - "type": "string", - "description": "" + "type": "string" }, "resourcesResult": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_PipelineResourceResult", @@ -1887,7 +1638,6 @@ }, "retriesStatus": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunStatus", @@ -1896,7 +1646,6 @@ }, "sidecars": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_SidecarState", @@ -1908,7 +1657,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_StepState", @@ -1917,7 +1665,6 @@ }, "taskResults": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskRunResult", @@ -1936,15 +1683,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskSpec": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "params": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_ParamSpec", @@ -1957,7 +1701,6 @@ }, "results": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_TaskResult", @@ -1966,7 +1709,6 @@ }, "sidecars": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Sidecar", @@ -1978,7 +1720,6 @@ }, "steps": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_Step", @@ -1987,7 +1728,6 @@ }, "volumes": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "existingJavaType": "io.fabric8.kubernetes.api.model.Volume" @@ -1995,7 +1735,6 @@ }, "workspaces": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration", @@ -2010,22 +1749,17 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WhenExpression": { "type": "object", - "description": "", "properties": { "input": { - "type": "string", - "description": "" + "type": "string" }, "operator": { - "type": "string", - "description": "" + "type": "string" }, "values": { "type": "array", - "description": "", "items": { - "type": "string", - "description": "" + "type": "string" } } }, @@ -2036,7 +1770,6 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceBinding": { "type": "object", - "description": "", "properties": { "configMap": { "existingJavaType": "io.fabric8.kubernetes.api.model.ConfigMapVolumeSource" @@ -2045,8 +1778,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.EmptyDirVolumeSource" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "persistentVolumeClaim": { "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaimVolumeSource" @@ -2055,8 +1787,7 @@ "existingJavaType": "io.fabric8.kubernetes.api.model.SecretVolumeSource" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "volumeClaimTemplate": { "existingJavaType": "io.fabric8.kubernetes.api.model.PersistentVolumeClaim" @@ -2069,27 +1800,21 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspaceDeclaration": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "mountPath": { - "type": "string", - "description": "" + "type": "string" }, "name": { - "type": "string", - "description": "" + "type": "string" }, "optional": { - "type": "boolean", - "description": "" + "type": "boolean" }, "readOnly": { - "type": "boolean", - "description": "" + "type": "boolean" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspaceDeclaration", @@ -2099,19 +1824,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_pipeline_v1beta1_WorkspacePipelineTaskBinding": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "subPath": { - "type": "string", - "description": "" + "type": "string" }, "workspace": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.pipeline.v1beta1.WorkspacePipelineTaskBinding", @@ -2121,15 +1842,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_PipelineResourceSpec": { "type": "object", - "description": "", "properties": { "description": { - "type": "string", - "description": "" + "type": "string" }, "params": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam", "existingJavaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.ResourceParam" @@ -2137,7 +1855,6 @@ }, "secrets": { "type": "array", - "description": "", "javaOmitEmpty": true, "items": { "$ref": "#/definitions/github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam", @@ -2145,8 +1862,7 @@ } }, "type": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.PipelineResourceSpec", @@ -2156,15 +1872,12 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_ResourceParam": { "type": "object", - "description": "", "properties": { "name": { - "type": "string", - "description": "" + "type": "string" }, "value": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.ResourceParam", @@ -2174,19 +1887,15 @@ }, "github_com_tektoncd_pipeline_pkg_apis_resource_v1alpha1_SecretParam": { "type": "object", - "description": "", "properties": { "fieldName": { - "type": "string", - "description": "" + "type": "string" }, "secretKey": { - "type": "string", - "description": "" + "type": "string" }, "secretName": { - "type": "string", - "description": "" + "type": "string" } }, "javaType": "io.fabric8.tekton.v1beta1.internal.pipeline.pkg.apis.resource.v1alpha1.SecretParam", diff --git a/extensions/volumesnapshot/model/src/main/resources/schema/volumesnapshot-schema.json b/extensions/volumesnapshot/model/src/main/resources/schema/volumesnapshot-schema.json index 4b461b7b9a0..3d001f09f9c 100644 --- a/extensions/volumesnapshot/model/src/main/resources/schema/volumesnapshot-schema.json +++ b/extensions/volumesnapshot/model/src/main/resources/schema/volumesnapshot-schema.json @@ -4,17 +4,14 @@ "definitions": { "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshot": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "snapshot.storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "VolumeSnapshot", "required": true }, @@ -38,25 +35,20 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotClass": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "snapshot.storage.k8s.io/v1beta1", "required": true }, "deletionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "kind": { "type": "string", - "description": "", "default": "VolumeSnapshotClass", "required": true }, @@ -65,7 +57,6 @@ }, "parameters": { "type": "object", - "description": "", "existingJavaType": "java.util.Map\u003cString,String\u003e" } }, @@ -76,17 +67,14 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotClassList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "snapshot.storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotClass", "existingJavaType": "io.fabric8.volumesnapshot.api.model.VolumeSnapshotClass" @@ -94,7 +82,6 @@ }, "kind": { "type": "string", - "description": "", "default": "VolumeSnapshotClassList", "required": true }, @@ -110,17 +97,14 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotContent": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "snapshot.storage.k8s.io/v1beta1", "required": true }, "kind": { "type": "string", - "description": "", "default": "VolumeSnapshotContent", "required": true }, @@ -143,17 +127,14 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotContentList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "snapshot.storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotContent", "existingJavaType": "io.fabric8.volumesnapshot.api.model.VolumeSnapshotContent" @@ -161,7 +142,6 @@ }, "kind": { "type": "string", - "description": "", "default": "VolumeSnapshotContentList", "required": true }, @@ -177,16 +157,13 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotContentSource": { "type": "object", - "description": "", "properties": { "snapshotHandle": { "type": "string", - "description": "", "existingJavaType": "String" }, "volumeHandle": { "type": "string", - "description": "", "existingJavaType": "String" } }, @@ -197,15 +174,12 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotContentSpec": { "type": "object", - "description": "", "properties": { "deletionPolicy": { - "type": "string", - "description": "" + "type": "string" }, "driver": { - "type": "string", - "description": "" + "type": "string" }, "source": { "$ref": "#/definitions/github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotContentSource", @@ -213,7 +187,6 @@ }, "volumeSnapshotClassName": { "type": "string", - "description": "", "existingJavaType": "String" }, "volumeSnapshotRef": { @@ -227,11 +200,9 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotContentStatus": { "type": "object", - "description": "", "properties": { "creationTime": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "error": { @@ -240,17 +211,14 @@ }, "readyToUse": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "restoreSize": { "type": "integer", - "description": "", "existingJavaType": "Long" }, "snapshotHandle": { "type": "string", - "description": "", "existingJavaType": "String" } }, @@ -261,11 +229,9 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotError": { "type": "object", - "description": "", "properties": { "message": { "type": "string", - "description": "", "existingJavaType": "String" }, "time": { @@ -279,17 +245,14 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotList": { "type": "object", - "description": "", "properties": { "apiVersion": { "type": "string", - "description": "", "default": "snapshot.storage.k8s.io/v1beta1", "required": true }, "items": { "type": "array", - "description": "", "items": { "$ref": "#/definitions/github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshot", "existingJavaType": "io.fabric8.volumesnapshot.api.model.VolumeSnapshot" @@ -297,7 +260,6 @@ }, "kind": { "type": "string", - "description": "", "default": "VolumeSnapshotList", "required": true }, @@ -313,16 +275,13 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotSource": { "type": "object", - "description": "", "properties": { "persistentVolumeClaimName": { "type": "string", - "description": "", "existingJavaType": "String" }, "volumeSnapshotContentName": { "type": "string", - "description": "", "existingJavaType": "String" } }, @@ -333,7 +292,6 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotSpec": { "type": "object", - "description": "", "properties": { "source": { "$ref": "#/definitions/github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotSource", @@ -341,7 +299,6 @@ }, "volumeSnapshotClassName": { "type": "string", - "description": "", "existingJavaType": "String" } }, @@ -352,11 +309,9 @@ }, "github_com_kubernetes-csi_external-snapshotter_v2_pkg_apis_volumesnapshot_v1beta1_VolumeSnapshotStatus": { "type": "object", - "description": "", "properties": { "boundVolumeSnapshotContentName": { "type": "string", - "description": "", "existingJavaType": "String" }, "creationTime": { @@ -368,7 +323,6 @@ }, "readyToUse": { "type": "boolean", - "description": "", "existingJavaType": "Boolean" }, "restoreSize": {