From c0b952836551729048406c5657ac494f42888d60 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sun, 18 Sep 2016 19:36:35 -0400 Subject: [PATCH 1/2] Pass a value for versioned.Event, not a pointer --- pkg/apiserver/api_installer.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/apiserver/api_installer.go b/pkg/apiserver/api_installer.go index b10dd86a266..06b6c323a5f 100644 --- a/pkg/apiserver/api_installer.go +++ b/pkg/apiserver/api_installer.go @@ -287,12 +287,13 @@ func (a *APIInstaller) registerResourceHandlers(path string, storage rest.Storag isGetter = true } - var versionedWatchEvent runtime.Object + var versionedWatchEvent interface{} if isWatcher { - versionedWatchEvent, err = a.group.Creater.New(a.group.GroupVersion.WithKind("WatchEvent")) + versionedWatchEventPtr, err := a.group.Creater.New(a.group.GroupVersion.WithKind("WatchEvent")) if err != nil { return nil, err } + versionedWatchEvent = indirectArbitraryPointer(versionedWatchEventPtr) } var ( From 8fd096e5c82ce5979a1b97b799aa69b196c3d25e Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sun, 18 Sep 2016 19:37:03 -0400 Subject: [PATCH 2/2] generated: swagger, docs --- api/swagger-spec/apps_v1alpha1.json | 29 ++- api/swagger-spec/autoscaling_v1.json | 29 ++- api/swagger-spec/batch_v1.json | 29 ++- .../certificates.k8s.io_v1alpha1.json | 25 ++- api/swagger-spec/extensions_v1beta1.json | 109 ++++++----- api/swagger-spec/policy_v1alpha1.json | 29 ++- .../rbac.authorization.k8s.io_v1alpha1.json | 57 +++--- api/swagger-spec/storage.k8s.io_v1beta1.json | 25 ++- api/swagger-spec/v1.json | 185 ++++++++++-------- .../autoscaling/v1/definitions.html | 38 +++- .../autoscaling/v1/operations.html | 8 +- docs/api-reference/batch/v1/definitions.html | 44 ++++- docs/api-reference/batch/v1/operations.html | 8 +- .../v1alpha1/definitions.html | 38 +++- .../v1alpha1/operations.html | 6 +- .../extensions/v1beta1/definitions.html | 44 ++++- .../extensions/v1beta1/operations.html | 48 ++--- docs/api-reference/v1/definitions.html | 44 ++++- docs/api-reference/v1/operations.html | 86 ++++---- .../apis/swagger-spec/extensions_v1beta1.json | 41 ++-- .../apis/swagger-spec/federation_v1beta1.json | 27 ++- federation/apis/swagger-spec/logs.json | 11 +- .../apis/swagger-spec/resourceListing.json | 8 +- federation/apis/swagger-spec/v1.json | 61 +++--- .../extensions/v1beta1/definitions.html | 44 ++++- .../extensions/v1beta1/operations.html | 14 +- .../federation/v1beta1/definitions.html | 46 ++++- .../federation/v1beta1/operations.html | 6 +- .../docs/api-reference/v1/definitions.html | 44 ++++- .../docs/api-reference/v1/operations.html | 24 +-- 30 files changed, 810 insertions(+), 397 deletions(-) diff --git a/api/swagger-spec/apps_v1alpha1.json b/api/swagger-spec/apps_v1alpha1.json index a99249f01f5..e9e89fc8f72 100644 --- a/api/swagger-spec/apps_v1alpha1.json +++ b/api/swagger-spec/apps_v1alpha1.json @@ -224,7 +224,7 @@ "description": "API at /apis/apps/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PetSet", "nickname": "watchNamespacedPetSetList", @@ -290,7 +290,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -546,7 +546,7 @@ "description": "API at /apis/apps/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind PetSet", "nickname": "watchNamespacedPetSet", @@ -620,7 +620,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -717,7 +717,7 @@ "description": "API at /apis/apps/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PetSet", "nickname": "watchNamespacedPetSetList", @@ -775,7 +775,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2746,9 +2746,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/autoscaling_v1.json b/api/swagger-spec/autoscaling_v1.json index 4dcd8ac4c3c..38d6d06487f 100644 --- a/api/swagger-spec/autoscaling_v1.json +++ b/api/swagger-spec/autoscaling_v1.json @@ -224,7 +224,7 @@ "description": "API at /apis/autoscaling/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of HorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscalerList", @@ -290,7 +290,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -546,7 +546,7 @@ "description": "API at /apis/autoscaling/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind HorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscaler", @@ -620,7 +620,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -717,7 +717,7 @@ "description": "API at /apis/autoscaling/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of HorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscalerList", @@ -775,7 +775,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1329,9 +1329,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index a048c5dab21..38e812645e7 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -224,7 +224,7 @@ "description": "API at /apis/batch/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Job", "nickname": "watchNamespacedJobList", @@ -290,7 +290,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -546,7 +546,7 @@ "description": "API at /apis/batch/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Job", "nickname": "watchNamespacedJob", @@ -620,7 +620,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -717,7 +717,7 @@ "description": "API at /apis/batch/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Job", "nickname": "watchNamespacedJobList", @@ -775,7 +775,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2730,9 +2730,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/certificates.k8s.io_v1alpha1.json b/api/swagger-spec/certificates.k8s.io_v1alpha1.json index ad328c03ab0..51132bea8d6 100644 --- a/api/swagger-spec/certificates.k8s.io_v1alpha1.json +++ b/api/swagger-spec/certificates.k8s.io_v1alpha1.json @@ -200,7 +200,7 @@ "description": "API at /apis/certificates.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of CertificateSigningRequest", "nickname": "watchCertificateSigningRequestList", @@ -258,7 +258,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -482,7 +482,7 @@ "description": "API at /apis/certificates.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind CertificateSigningRequest", "nickname": "watchCertificateSigningRequest", @@ -548,7 +548,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1020,9 +1020,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index 24cd6a21714..12f9fe589d3 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -224,7 +224,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of DaemonSet", "nickname": "watchNamespacedDaemonSetList", @@ -290,7 +290,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -546,7 +546,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind DaemonSet", "nickname": "watchNamespacedDaemonSet", @@ -620,7 +620,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -717,7 +717,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of DaemonSet", "nickname": "watchNamespacedDaemonSetList", @@ -775,7 +775,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1171,7 +1171,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Deployment", "nickname": "watchNamespacedDeploymentList", @@ -1237,7 +1237,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1493,7 +1493,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Deployment", "nickname": "watchNamespacedDeployment", @@ -1567,7 +1567,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1664,7 +1664,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Deployment", "nickname": "watchNamespacedDeploymentList", @@ -1722,7 +1722,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2344,7 +2344,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of HorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscalerList", @@ -2410,7 +2410,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2666,7 +2666,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind HorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscaler", @@ -2740,7 +2740,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2837,7 +2837,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of HorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscalerList", @@ -2895,7 +2895,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3291,7 +3291,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Ingress", "nickname": "watchNamespacedIngressList", @@ -3357,7 +3357,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3613,7 +3613,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Ingress", "nickname": "watchNamespacedIngress", @@ -3687,7 +3687,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3784,7 +3784,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Ingress", "nickname": "watchNamespacedIngressList", @@ -3842,7 +3842,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -4238,7 +4238,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Job", "nickname": "watchNamespacedJobList", @@ -4304,7 +4304,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -4560,7 +4560,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Job", "nickname": "watchNamespacedJob", @@ -4634,7 +4634,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -4731,7 +4731,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Job", "nickname": "watchNamespacedJobList", @@ -4789,7 +4789,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -5185,7 +5185,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of NetworkPolicy", "nickname": "watchNamespacedNetworkPolicyList", @@ -5251,7 +5251,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -5507,7 +5507,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind NetworkPolicy", "nickname": "watchNamespacedNetworkPolicy", @@ -5581,7 +5581,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -5678,7 +5678,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of NetworkPolicy", "nickname": "watchNamespacedNetworkPolicyList", @@ -5736,7 +5736,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -5967,7 +5967,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ReplicaSet", "nickname": "watchNamespacedReplicaSetList", @@ -6033,7 +6033,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -6289,7 +6289,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ReplicaSet", "nickname": "watchNamespacedReplicaSet", @@ -6363,7 +6363,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -6460,7 +6460,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ReplicaSet", "nickname": "watchNamespacedReplicaSetList", @@ -6518,7 +6518,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -7220,7 +7220,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ThirdPartyResource", "nickname": "watchThirdPartyResourceList", @@ -7278,7 +7278,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -7502,7 +7502,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ThirdPartyResource", "nickname": "watchThirdPartyResource", @@ -7568,7 +7568,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -9291,9 +9291,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/policy_v1alpha1.json b/api/swagger-spec/policy_v1alpha1.json index e62e4a74dd0..ec387ed14b1 100644 --- a/api/swagger-spec/policy_v1alpha1.json +++ b/api/swagger-spec/policy_v1alpha1.json @@ -224,7 +224,7 @@ "description": "API at /apis/policy/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PodDisruptionBudget", "nickname": "watchNamespacedPodDisruptionBudgetList", @@ -290,7 +290,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -546,7 +546,7 @@ "description": "API at /apis/policy/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind PodDisruptionBudget", "nickname": "watchNamespacedPodDisruptionBudget", @@ -620,7 +620,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -717,7 +717,7 @@ "description": "API at /apis/policy/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PodDisruptionBudget", "nickname": "watchNamespacedPodDisruptionBudgetList", @@ -775,7 +775,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1327,9 +1327,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/rbac.authorization.k8s.io_v1alpha1.json b/api/swagger-spec/rbac.authorization.k8s.io_v1alpha1.json index 4e3673bb5ec..810773b402d 100644 --- a/api/swagger-spec/rbac.authorization.k8s.io_v1alpha1.json +++ b/api/swagger-spec/rbac.authorization.k8s.io_v1alpha1.json @@ -200,7 +200,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ClusterRoleBinding", "nickname": "watchClusterRoleBindingList", @@ -258,7 +258,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -466,7 +466,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ClusterRoleBinding", "nickname": "watchClusterRoleBinding", @@ -532,7 +532,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -739,7 +739,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ClusterRole", "nickname": "watchClusterRoleList", @@ -797,7 +797,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1005,7 +1005,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ClusterRole", "nickname": "watchClusterRole", @@ -1071,7 +1071,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1302,7 +1302,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of RoleBinding", "nickname": "watchNamespacedRoleBindingList", @@ -1368,7 +1368,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1608,7 +1608,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind RoleBinding", "nickname": "watchNamespacedRoleBinding", @@ -1682,7 +1682,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1779,7 +1779,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of RoleBinding", "nickname": "watchNamespacedRoleBindingList", @@ -1837,7 +1837,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2068,7 +2068,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Role", "nickname": "watchNamespacedRoleList", @@ -2134,7 +2134,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2374,7 +2374,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Role", "nickname": "watchNamespacedRole", @@ -2448,7 +2448,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2545,7 +2545,7 @@ "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Role", "nickname": "watchNamespacedRoleList", @@ -2603,7 +2603,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2962,9 +2962,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/storage.k8s.io_v1beta1.json b/api/swagger-spec/storage.k8s.io_v1beta1.json index e3c6800731b..8d0da705da5 100644 --- a/api/swagger-spec/storage.k8s.io_v1beta1.json +++ b/api/swagger-spec/storage.k8s.io_v1beta1.json @@ -200,7 +200,7 @@ "description": "API at /apis/storage.k8s.io/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of StorageClass", "nickname": "watchStorageClassList", @@ -258,7 +258,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -482,7 +482,7 @@ "description": "API at /apis/storage.k8s.io/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind StorageClass", "nickname": "watchStorageClass", @@ -548,7 +548,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -854,9 +854,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 8b37631a9ce..1c73f0a9caf 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -399,7 +399,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ConfigMap", "nickname": "watchNamespacedConfigMapList", @@ -465,7 +465,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -721,7 +721,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ConfigMap", "nickname": "watchNamespacedConfigMap", @@ -795,7 +795,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -892,7 +892,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ConfigMap", "nickname": "watchNamespacedConfigMapList", @@ -950,7 +950,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1181,7 +1181,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Endpoints", "nickname": "watchNamespacedEndpointsList", @@ -1247,7 +1247,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1503,7 +1503,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Endpoints", "nickname": "watchNamespacedEndpoints", @@ -1577,7 +1577,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1674,7 +1674,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Endpoints", "nickname": "watchNamespacedEndpointsList", @@ -1732,7 +1732,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1963,7 +1963,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Event", "nickname": "watchNamespacedEventList", @@ -2029,7 +2029,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2285,7 +2285,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Event", "nickname": "watchNamespacedEvent", @@ -2359,7 +2359,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2456,7 +2456,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Event", "nickname": "watchNamespacedEventList", @@ -2514,7 +2514,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2745,7 +2745,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of LimitRange", "nickname": "watchNamespacedLimitRangeList", @@ -2811,7 +2811,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3067,7 +3067,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind LimitRange", "nickname": "watchNamespacedLimitRange", @@ -3141,7 +3141,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3238,7 +3238,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of LimitRange", "nickname": "watchNamespacedLimitRangeList", @@ -3296,7 +3296,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3503,7 +3503,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Namespace", "nickname": "watchNamespaceList", @@ -3561,7 +3561,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3785,7 +3785,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Namespace", "nickname": "watchNamespace", @@ -3851,7 +3851,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -4252,7 +4252,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Node", "nickname": "watchNodeList", @@ -4310,7 +4310,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -4534,7 +4534,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Node", "nickname": "watchNode", @@ -4600,7 +4600,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -5716,7 +5716,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PersistentVolumeClaim", "nickname": "watchNamespacedPersistentVolumeClaimList", @@ -5782,7 +5782,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -6038,7 +6038,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind PersistentVolumeClaim", "nickname": "watchNamespacedPersistentVolumeClaim", @@ -6112,7 +6112,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -6209,7 +6209,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PersistentVolumeClaim", "nickname": "watchNamespacedPersistentVolumeClaimList", @@ -6267,7 +6267,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -6639,7 +6639,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PersistentVolume", "nickname": "watchPersistentVolumeList", @@ -6697,7 +6697,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -6921,7 +6921,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind PersistentVolume", "nickname": "watchPersistentVolume", @@ -6987,7 +6987,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -7359,7 +7359,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Pod", "nickname": "watchNamespacedPodList", @@ -7425,7 +7425,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -7681,7 +7681,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Pod", "nickname": "watchNamespacedPod", @@ -7755,7 +7755,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -8272,7 +8272,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Pod", "nickname": "watchNamespacedPodList", @@ -8330,7 +8330,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -9856,7 +9856,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PodTemplate", "nickname": "watchNamespacedPodTemplateList", @@ -9922,7 +9922,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -10178,7 +10178,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind PodTemplate", "nickname": "watchNamespacedPodTemplate", @@ -10252,7 +10252,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -10349,7 +10349,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of PodTemplate", "nickname": "watchNamespacedPodTemplateList", @@ -10407,7 +10407,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -10638,7 +10638,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ReplicationController", "nickname": "watchNamespacedReplicationControllerList", @@ -10704,7 +10704,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -10960,7 +10960,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ReplicationController", "nickname": "watchNamespacedReplicationController", @@ -11034,7 +11034,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -11131,7 +11131,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ReplicationController", "nickname": "watchNamespacedReplicationControllerList", @@ -11189,7 +11189,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -11750,7 +11750,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ResourceQuota", "nickname": "watchNamespacedResourceQuotaList", @@ -11816,7 +11816,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -12072,7 +12072,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ResourceQuota", "nickname": "watchNamespacedResourceQuota", @@ -12146,7 +12146,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -12243,7 +12243,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ResourceQuota", "nickname": "watchNamespacedResourceQuotaList", @@ -12301,7 +12301,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -12697,7 +12697,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Secret", "nickname": "watchNamespacedSecretList", @@ -12763,7 +12763,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -13019,7 +13019,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Secret", "nickname": "watchNamespacedSecret", @@ -13093,7 +13093,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -13190,7 +13190,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Secret", "nickname": "watchNamespacedSecretList", @@ -13248,7 +13248,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -13479,7 +13479,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ServiceAccount", "nickname": "watchNamespacedServiceAccountList", @@ -13545,7 +13545,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -13801,7 +13801,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ServiceAccount", "nickname": "watchNamespacedServiceAccount", @@ -13875,7 +13875,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -13972,7 +13972,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ServiceAccount", "nickname": "watchNamespacedServiceAccountList", @@ -14030,7 +14030,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -14182,7 +14182,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Service", "nickname": "watchNamespacedServiceList", @@ -14248,7 +14248,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -14496,7 +14496,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Service", "nickname": "watchNamespacedService", @@ -14570,7 +14570,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -15087,7 +15087,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Service", "nickname": "watchNamespacedServiceList", @@ -15145,7 +15145,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -16263,9 +16263,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/docs/api-reference/autoscaling/v1/definitions.html b/docs/api-reference/autoscaling/v1/definitions.html index 134371f3e63..48e33f78222 100755 --- a/docs/api-reference/autoscaling/v1/definitions.html +++ b/docs/api-reference/autoscaling/v1/definitions.html @@ -568,7 +568,41 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
-

*versioned.Event

+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

@@ -1334,7 +1368,7 @@ Examples:
diff --git a/docs/api-reference/autoscaling/v1/operations.html b/docs/api-reference/autoscaling/v1/operations.html index 52b49860727..5d458a09492 100755 --- a/docs/api-reference/autoscaling/v1/operations.html +++ b/docs/api-reference/autoscaling/v1/operations.html @@ -2007,7 +2007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -2161,7 +2161,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -2323,7 +2323,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -2374,7 +2374,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index e9e77309e82..f019b4ba26d 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -383,6 +383,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

Definitions

+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

+ +
+

v1.Preconditions

Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

@@ -1056,10 +1094,6 @@ Examples:
-
-
-

*versioned.Event

-

unversioned.StatusDetails

@@ -4287,7 +4321,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
diff --git a/docs/api-reference/batch/v1/operations.html b/docs/api-reference/batch/v1/operations.html index 25071fc7b2f..7862562a3f6 100755 --- a/docs/api-reference/batch/v1/operations.html +++ b/docs/api-reference/batch/v1/operations.html @@ -2007,7 +2007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -2161,7 +2161,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -2323,7 +2323,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -2374,7 +2374,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
diff --git a/docs/api-reference/certificates.k8s.io/v1alpha1/definitions.html b/docs/api-reference/certificates.k8s.io/v1alpha1/definitions.html index b650ae2d140..56da9b79f5a 100755 --- a/docs/api-reference/certificates.k8s.io/v1alpha1/definitions.html +++ b/docs/api-reference/certificates.k8s.io/v1alpha1/definitions.html @@ -620,7 +620,41 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
-

*versioned.Event

+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

@@ -1311,7 +1345,7 @@ Examples:
diff --git a/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html b/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html index 8a6ea1a943b..db9ef7605da 100755 --- a/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html +++ b/docs/api-reference/certificates.k8s.io/v1alpha1/operations.html @@ -1667,7 +1667,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -1821,7 +1821,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -1872,7 +1872,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 003c0527e75..6b49ccae22e 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -1413,10 +1413,6 @@ Examples:
- -
-

*versioned.Event

-

v1beta1.JobStatus

@@ -4174,6 +4170,44 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

+

v1beta1.ScaleStatus

@@ -6556,7 +6590,7 @@ Both these may change in the future. Incoming requests are matched against the h
diff --git a/docs/api-reference/extensions/v1beta1/operations.html b/docs/api-reference/extensions/v1beta1/operations.html index 5a07c3836f9..4b2d37cbf01 100755 --- a/docs/api-reference/extensions/v1beta1/operations.html +++ b/docs/api-reference/extensions/v1beta1/operations.html @@ -12569,7 +12569,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -12715,7 +12715,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -12861,7 +12861,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -13007,7 +13007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -13153,7 +13153,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -13307,7 +13307,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -13469,7 +13469,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -13623,7 +13623,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -13785,7 +13785,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -13939,7 +13939,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -14101,7 +14101,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -14255,7 +14255,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -14417,7 +14417,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -14571,7 +14571,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -14733,7 +14733,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -14887,7 +14887,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -15049,7 +15049,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -15203,7 +15203,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -15365,7 +15365,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -15511,7 +15511,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -15657,7 +15657,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -15803,7 +15803,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -15957,7 +15957,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -16008,7 +16008,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 0ff2e33e4d4..04bed41a8b7 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -1413,10 +1413,6 @@ Examples:
- -
-

*versioned.Event

-

v1.EndpointsList

@@ -5172,6 +5168,44 @@ The resulting set of endpoints can be viewed as:
+
+
+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

+

v1.PodTemplate

@@ -8434,7 +8468,7 @@ The resulting set of endpoints can be viewed as:
diff --git a/docs/api-reference/v1/operations.html b/docs/api-reference/v1/operations.html index 0b0545a76fc..f0b3f008209 100755 --- a/docs/api-reference/v1/operations.html +++ b/docs/api-reference/v1/operations.html @@ -26449,7 +26449,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -26595,7 +26595,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -26741,7 +26741,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -26887,7 +26887,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -27033,7 +27033,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -27187,7 +27187,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -27349,7 +27349,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -27503,7 +27503,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -27665,7 +27665,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -27819,7 +27819,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -27981,7 +27981,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -28135,7 +28135,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -28297,7 +28297,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -28451,7 +28451,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -28613,7 +28613,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -28767,7 +28767,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -28929,7 +28929,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -29083,7 +29083,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -29245,7 +29245,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -29399,7 +29399,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -29561,7 +29561,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -29715,7 +29715,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -29877,7 +29877,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -30031,7 +30031,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -30193,7 +30193,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -30347,7 +30347,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -30509,7 +30509,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -30663,7 +30663,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -30825,7 +30825,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -30979,7 +30979,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -31125,7 +31125,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -31279,7 +31279,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -31425,7 +31425,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -31571,7 +31571,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -31725,7 +31725,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -31871,7 +31871,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -32017,7 +32017,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -32163,7 +32163,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -32309,7 +32309,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -32455,7 +32455,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -32601,7 +32601,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -32747,7 +32747,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -32798,7 +32798,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/federation/apis/swagger-spec/extensions_v1beta1.json b/federation/apis/swagger-spec/extensions_v1beta1.json index d5ee829ced5..bb41dfa1565 100644 --- a/federation/apis/swagger-spec/extensions_v1beta1.json +++ b/federation/apis/swagger-spec/extensions_v1beta1.json @@ -224,7 +224,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Ingress", "nickname": "watchNamespacedIngressList", @@ -290,7 +290,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -546,7 +546,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Ingress", "nickname": "watchNamespacedIngress", @@ -620,7 +620,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -717,7 +717,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Ingress", "nickname": "watchNamespacedIngressList", @@ -775,7 +775,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1171,7 +1171,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ReplicaSet", "nickname": "watchNamespacedReplicaSetList", @@ -1237,7 +1237,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1493,7 +1493,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind ReplicaSet", "nickname": "watchNamespacedReplicaSet", @@ -1567,7 +1567,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1664,7 +1664,7 @@ "description": "API at /apis/extensions/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of ReplicaSet", "nickname": "watchNamespacedReplicaSetList", @@ -1722,7 +1722,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2497,9 +2497,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/federation/apis/swagger-spec/federation_v1beta1.json b/federation/apis/swagger-spec/federation_v1beta1.json index 19b438e3600..09c96d96259 100644 --- a/federation/apis/swagger-spec/federation_v1beta1.json +++ b/federation/apis/swagger-spec/federation_v1beta1.json @@ -200,7 +200,7 @@ "description": "API at /apis/federation/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Cluster", "nickname": "watchClusterList", @@ -258,7 +258,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -482,7 +482,7 @@ "description": "API at /apis/federation/v1beta1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Cluster", "nickname": "watchCluster", @@ -548,7 +548,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -881,7 +881,7 @@ "items": { "type": "string" }, - "description": "Zones is the list of avaliability zones in which the nodes of the cluster exist, e.g. 'us-east1-a'. These will always be in the same region." + "description": "Zones is the list of availability zones in which the nodes of the cluster exist, e.g. 'us-east1-a'. These will always be in the same region." }, "region": { "type": "string", @@ -1012,9 +1012,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/federation/apis/swagger-spec/logs.json b/federation/apis/swagger-spec/logs.json index 971cc9a5b70..e8fae7c9a2c 100644 --- a/federation/apis/swagger-spec/logs.json +++ b/federation/apis/swagger-spec/logs.json @@ -16,7 +16,16 @@ "type": "void", "method": "GET", "nickname": "logFileHandler", - "parameters": [] + "parameters": [ + { + "type": "string", + "paramType": "path", + "name": "logpath", + "description": "path to the log", + "required": true, + "allowMultiple": false + } + ] } ] }, diff --git a/federation/apis/swagger-spec/resourceListing.json b/federation/apis/swagger-spec/resourceListing.json index 1fd8082eea2..6d377163514 100644 --- a/federation/apis/swagger-spec/resourceListing.json +++ b/federation/apis/swagger-spec/resourceListing.json @@ -1,10 +1,6 @@ { "swaggerVersion": "1.2", "apis": [ - { - "path": "/logs", - "description": "get log files" - }, { "path": "/version", "description": "git code version from which this is built" @@ -13,6 +9,10 @@ "path": "/apis", "description": "get available API versions" }, + { + "path": "/logs", + "description": "get log files" + }, { "path": "/apis/federation/v1beta1", "description": "API at /apis/federation/v1beta1" diff --git a/federation/apis/swagger-spec/v1.json b/federation/apis/swagger-spec/v1.json index 194294b7dc1..846f45bd110 100644 --- a/federation/apis/swagger-spec/v1.json +++ b/federation/apis/swagger-spec/v1.json @@ -224,7 +224,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Event", "nickname": "watchNamespacedEventList", @@ -290,7 +290,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -546,7 +546,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Event", "nickname": "watchNamespacedEvent", @@ -620,7 +620,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -717,7 +717,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Event", "nickname": "watchNamespacedEventList", @@ -775,7 +775,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -982,7 +982,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Namespace", "nickname": "watchNamespaceList", @@ -1040,7 +1040,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1264,7 +1264,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Namespace", "nickname": "watchNamespace", @@ -1330,7 +1330,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -1755,7 +1755,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Secret", "nickname": "watchNamespacedSecretList", @@ -1821,7 +1821,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2077,7 +2077,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Secret", "nickname": "watchNamespacedSecret", @@ -2151,7 +2151,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2248,7 +2248,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Secret", "nickname": "watchNamespacedSecretList", @@ -2306,7 +2306,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2537,7 +2537,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Service", "nickname": "watchNamespacedServiceList", @@ -2603,7 +2603,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -2859,7 +2859,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch changes to an object of kind Service", "nickname": "watchNamespacedService", @@ -2933,7 +2933,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3030,7 +3030,7 @@ "description": "API at /api/v1", "operations": [ { - "type": "*versioned.Event", + "type": "versioned.Event", "method": "GET", "summary": "watch individual changes to a list of Service", "nickname": "watchNamespacedServiceList", @@ -3088,7 +3088,7 @@ { "code": 200, "message": "OK", - "responseModel": "*versioned.Event" + "responseModel": "versioned.Event" } ], "produces": [ @@ -3635,9 +3635,20 @@ } } }, - "*versioned.Event": { - "id": "*versioned.Event", - "properties": {} + "versioned.Event": { + "id": "versioned.Event", + "required": [ + "type", + "object" + ], + "properties": { + "type": { + "type": "string" + }, + "object": { + "type": "string" + } + } }, "unversioned.Patch": { "id": "unversioned.Patch", diff --git a/federation/docs/api-reference/extensions/v1beta1/definitions.html b/federation/docs/api-reference/extensions/v1beta1/definitions.html index f5f3bdafed7..e85594b3117 100755 --- a/federation/docs/api-reference/extensions/v1beta1/definitions.html +++ b/federation/docs/api-reference/extensions/v1beta1/definitions.html @@ -392,6 +392,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

Definitions

+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

+ +
+

v1.Preconditions

Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

@@ -1330,10 +1368,6 @@ Both these may change in the future. Incoming requests are matched against the h -
-
-

*versioned.Event

-

unversioned.StatusDetails

@@ -4813,7 +4847,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
diff --git a/federation/docs/api-reference/extensions/v1beta1/operations.html b/federation/docs/api-reference/extensions/v1beta1/operations.html index 2c5c8326f9d..90eb1545d6f 100755 --- a/federation/docs/api-reference/extensions/v1beta1/operations.html +++ b/federation/docs/api-reference/extensions/v1beta1/operations.html @@ -3851,7 +3851,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -4005,7 +4005,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -4167,7 +4167,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -4321,7 +4321,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -4483,7 +4483,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -4629,7 +4629,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -4680,7 +4680,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
diff --git a/federation/docs/api-reference/federation/v1beta1/definitions.html b/federation/docs/api-reference/federation/v1beta1/definitions.html index d9cb146985f..c8cb493e5c2 100755 --- a/federation/docs/api-reference/federation/v1beta1/definitions.html +++ b/federation/docs/api-reference/federation/v1beta1/definitions.html @@ -490,10 +490,6 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } -
-
-

*versioned.Event

-

v1beta1.ClusterList

@@ -611,6 +607,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +
+
+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

+

unversioned.ListMeta

@@ -685,7 +719,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

zones

-

Zones is the list of avaliability zones in which the nodes of the cluster exist, e.g. us-east1-a. These will always be in the same region.

+

Zones is the list of availability zones in which the nodes of the cluster exist, e.g. us-east1-a. These will always be in the same region.

false

string array

@@ -1402,7 +1436,7 @@ Examples:
diff --git a/federation/docs/api-reference/federation/v1beta1/operations.html b/federation/docs/api-reference/federation/v1beta1/operations.html index ebd75421a26..4284bee2cb8 100755 --- a/federation/docs/api-reference/federation/v1beta1/operations.html +++ b/federation/docs/api-reference/federation/v1beta1/operations.html @@ -1548,7 +1548,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -1702,7 +1702,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -1753,7 +1753,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/federation/docs/api-reference/v1/definitions.html b/federation/docs/api-reference/v1/definitions.html index d186234b527..95b29c30583 100755 --- a/federation/docs/api-reference/v1/definitions.html +++ b/federation/docs/api-reference/v1/definitions.html @@ -463,6 +463,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

versioned.Event

+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

+

v1.Namespace

@@ -1147,10 +1185,6 @@ Examples:
-
-
-

*versioned.Event

-

unversioned.StatusDetails

@@ -2047,7 +2081,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
diff --git a/federation/docs/api-reference/v1/operations.html b/federation/docs/api-reference/v1/operations.html index 50e71bd12c5..649dfe4a596 100755 --- a/federation/docs/api-reference/v1/operations.html +++ b/federation/docs/api-reference/v1/operations.html @@ -5540,7 +5540,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -5686,7 +5686,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -5840,7 +5840,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -6002,7 +6002,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -6156,7 +6156,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -6318,7 +6318,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -6472,7 +6472,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -6634,7 +6634,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -6788,7 +6788,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -6934,7 +6934,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -7080,7 +7080,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

200

success

-

*versioned.Event

+

versioned.Event

@@ -7131,7 +7131,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }