Commit f230e6c7 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #33007 from smarterclayton/fix_versioned_event

Automatic merge from submit-queue Correct versioned.Event output in Swagger Fixes #24240 ```release-note The value of the `versioned.Event` object (returned by watch APIs) in the Swagger 1.2 schemas has been updated from `*versioned.Event` which was not expected by many client tools. The new value is consistent with other structs returned by the API. ```
parents b60df6c3 8fd096e5
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
"description": "API at /apis/apps/v1alpha1", "description": "API at /apis/apps/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PetSet", "summary": "watch individual changes to a list of PetSet",
"nickname": "watchNamespacedPetSetList", "nickname": "watchNamespacedPetSetList",
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -546,7 +546,7 @@ ...@@ -546,7 +546,7 @@
"description": "API at /apis/apps/v1alpha1", "description": "API at /apis/apps/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind PetSet", "summary": "watch changes to an object of kind PetSet",
"nickname": "watchNamespacedPetSet", "nickname": "watchNamespacedPetSet",
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
"description": "API at /apis/apps/v1alpha1", "description": "API at /apis/apps/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PetSet", "summary": "watch individual changes to a list of PetSet",
"nickname": "watchNamespacedPetSetList", "nickname": "watchNamespacedPetSetList",
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2746,9 +2746,20 @@ ...@@ -2746,9 +2746,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
"description": "API at /apis/autoscaling/v1", "description": "API at /apis/autoscaling/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of HorizontalPodAutoscaler", "summary": "watch individual changes to a list of HorizontalPodAutoscaler",
"nickname": "watchNamespacedHorizontalPodAutoscalerList", "nickname": "watchNamespacedHorizontalPodAutoscalerList",
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -546,7 +546,7 @@ ...@@ -546,7 +546,7 @@
"description": "API at /apis/autoscaling/v1", "description": "API at /apis/autoscaling/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind HorizontalPodAutoscaler", "summary": "watch changes to an object of kind HorizontalPodAutoscaler",
"nickname": "watchNamespacedHorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscaler",
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
"description": "API at /apis/autoscaling/v1", "description": "API at /apis/autoscaling/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of HorizontalPodAutoscaler", "summary": "watch individual changes to a list of HorizontalPodAutoscaler",
"nickname": "watchNamespacedHorizontalPodAutoscalerList", "nickname": "watchNamespacedHorizontalPodAutoscalerList",
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1329,9 +1329,20 @@ ...@@ -1329,9 +1329,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
"description": "API at /apis/batch/v1", "description": "API at /apis/batch/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Job", "summary": "watch individual changes to a list of Job",
"nickname": "watchNamespacedJobList", "nickname": "watchNamespacedJobList",
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -546,7 +546,7 @@ ...@@ -546,7 +546,7 @@
"description": "API at /apis/batch/v1", "description": "API at /apis/batch/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Job", "summary": "watch changes to an object of kind Job",
"nickname": "watchNamespacedJob", "nickname": "watchNamespacedJob",
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
"description": "API at /apis/batch/v1", "description": "API at /apis/batch/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Job", "summary": "watch individual changes to a list of Job",
"nickname": "watchNamespacedJobList", "nickname": "watchNamespacedJobList",
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2730,9 +2730,20 @@ ...@@ -2730,9 +2730,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
"description": "API at /apis/certificates.k8s.io/v1alpha1", "description": "API at /apis/certificates.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of CertificateSigningRequest", "summary": "watch individual changes to a list of CertificateSigningRequest",
"nickname": "watchCertificateSigningRequestList", "nickname": "watchCertificateSigningRequestList",
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -482,7 +482,7 @@ ...@@ -482,7 +482,7 @@
"description": "API at /apis/certificates.k8s.io/v1alpha1", "description": "API at /apis/certificates.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind CertificateSigningRequest", "summary": "watch changes to an object of kind CertificateSigningRequest",
"nickname": "watchCertificateSigningRequest", "nickname": "watchCertificateSigningRequest",
...@@ -548,7 +548,7 @@ ...@@ -548,7 +548,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1020,9 +1020,20 @@ ...@@ -1020,9 +1020,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of DaemonSet", "summary": "watch individual changes to a list of DaemonSet",
"nickname": "watchNamespacedDaemonSetList", "nickname": "watchNamespacedDaemonSetList",
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -546,7 +546,7 @@ ...@@ -546,7 +546,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind DaemonSet", "summary": "watch changes to an object of kind DaemonSet",
"nickname": "watchNamespacedDaemonSet", "nickname": "watchNamespacedDaemonSet",
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of DaemonSet", "summary": "watch individual changes to a list of DaemonSet",
"nickname": "watchNamespacedDaemonSetList", "nickname": "watchNamespacedDaemonSetList",
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1171,7 +1171,7 @@ ...@@ -1171,7 +1171,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Deployment", "summary": "watch individual changes to a list of Deployment",
"nickname": "watchNamespacedDeploymentList", "nickname": "watchNamespacedDeploymentList",
...@@ -1237,7 +1237,7 @@ ...@@ -1237,7 +1237,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1493,7 +1493,7 @@ ...@@ -1493,7 +1493,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Deployment", "summary": "watch changes to an object of kind Deployment",
"nickname": "watchNamespacedDeployment", "nickname": "watchNamespacedDeployment",
...@@ -1567,7 +1567,7 @@ ...@@ -1567,7 +1567,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1664,7 +1664,7 @@ ...@@ -1664,7 +1664,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Deployment", "summary": "watch individual changes to a list of Deployment",
"nickname": "watchNamespacedDeploymentList", "nickname": "watchNamespacedDeploymentList",
...@@ -1722,7 +1722,7 @@ ...@@ -1722,7 +1722,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2344,7 +2344,7 @@ ...@@ -2344,7 +2344,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of HorizontalPodAutoscaler", "summary": "watch individual changes to a list of HorizontalPodAutoscaler",
"nickname": "watchNamespacedHorizontalPodAutoscalerList", "nickname": "watchNamespacedHorizontalPodAutoscalerList",
...@@ -2410,7 +2410,7 @@ ...@@ -2410,7 +2410,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2666,7 +2666,7 @@ ...@@ -2666,7 +2666,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind HorizontalPodAutoscaler", "summary": "watch changes to an object of kind HorizontalPodAutoscaler",
"nickname": "watchNamespacedHorizontalPodAutoscaler", "nickname": "watchNamespacedHorizontalPodAutoscaler",
...@@ -2740,7 +2740,7 @@ ...@@ -2740,7 +2740,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2837,7 +2837,7 @@ ...@@ -2837,7 +2837,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of HorizontalPodAutoscaler", "summary": "watch individual changes to a list of HorizontalPodAutoscaler",
"nickname": "watchNamespacedHorizontalPodAutoscalerList", "nickname": "watchNamespacedHorizontalPodAutoscalerList",
...@@ -2895,7 +2895,7 @@ ...@@ -2895,7 +2895,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3291,7 +3291,7 @@ ...@@ -3291,7 +3291,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Ingress", "summary": "watch individual changes to a list of Ingress",
"nickname": "watchNamespacedIngressList", "nickname": "watchNamespacedIngressList",
...@@ -3357,7 +3357,7 @@ ...@@ -3357,7 +3357,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3613,7 +3613,7 @@ ...@@ -3613,7 +3613,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Ingress", "summary": "watch changes to an object of kind Ingress",
"nickname": "watchNamespacedIngress", "nickname": "watchNamespacedIngress",
...@@ -3687,7 +3687,7 @@ ...@@ -3687,7 +3687,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3784,7 +3784,7 @@ ...@@ -3784,7 +3784,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Ingress", "summary": "watch individual changes to a list of Ingress",
"nickname": "watchNamespacedIngressList", "nickname": "watchNamespacedIngressList",
...@@ -3842,7 +3842,7 @@ ...@@ -3842,7 +3842,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -4238,7 +4238,7 @@ ...@@ -4238,7 +4238,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Job", "summary": "watch individual changes to a list of Job",
"nickname": "watchNamespacedJobList", "nickname": "watchNamespacedJobList",
...@@ -4304,7 +4304,7 @@ ...@@ -4304,7 +4304,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -4560,7 +4560,7 @@ ...@@ -4560,7 +4560,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Job", "summary": "watch changes to an object of kind Job",
"nickname": "watchNamespacedJob", "nickname": "watchNamespacedJob",
...@@ -4634,7 +4634,7 @@ ...@@ -4634,7 +4634,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -4731,7 +4731,7 @@ ...@@ -4731,7 +4731,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Job", "summary": "watch individual changes to a list of Job",
"nickname": "watchNamespacedJobList", "nickname": "watchNamespacedJobList",
...@@ -4789,7 +4789,7 @@ ...@@ -4789,7 +4789,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -5185,7 +5185,7 @@ ...@@ -5185,7 +5185,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of NetworkPolicy", "summary": "watch individual changes to a list of NetworkPolicy",
"nickname": "watchNamespacedNetworkPolicyList", "nickname": "watchNamespacedNetworkPolicyList",
...@@ -5251,7 +5251,7 @@ ...@@ -5251,7 +5251,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -5507,7 +5507,7 @@ ...@@ -5507,7 +5507,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind NetworkPolicy", "summary": "watch changes to an object of kind NetworkPolicy",
"nickname": "watchNamespacedNetworkPolicy", "nickname": "watchNamespacedNetworkPolicy",
...@@ -5581,7 +5581,7 @@ ...@@ -5581,7 +5581,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -5678,7 +5678,7 @@ ...@@ -5678,7 +5678,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of NetworkPolicy", "summary": "watch individual changes to a list of NetworkPolicy",
"nickname": "watchNamespacedNetworkPolicyList", "nickname": "watchNamespacedNetworkPolicyList",
...@@ -5736,7 +5736,7 @@ ...@@ -5736,7 +5736,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -5967,7 +5967,7 @@ ...@@ -5967,7 +5967,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ReplicaSet", "summary": "watch individual changes to a list of ReplicaSet",
"nickname": "watchNamespacedReplicaSetList", "nickname": "watchNamespacedReplicaSetList",
...@@ -6033,7 +6033,7 @@ ...@@ -6033,7 +6033,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -6289,7 +6289,7 @@ ...@@ -6289,7 +6289,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ReplicaSet", "summary": "watch changes to an object of kind ReplicaSet",
"nickname": "watchNamespacedReplicaSet", "nickname": "watchNamespacedReplicaSet",
...@@ -6363,7 +6363,7 @@ ...@@ -6363,7 +6363,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -6460,7 +6460,7 @@ ...@@ -6460,7 +6460,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ReplicaSet", "summary": "watch individual changes to a list of ReplicaSet",
"nickname": "watchNamespacedReplicaSetList", "nickname": "watchNamespacedReplicaSetList",
...@@ -6518,7 +6518,7 @@ ...@@ -6518,7 +6518,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -7220,7 +7220,7 @@ ...@@ -7220,7 +7220,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ThirdPartyResource", "summary": "watch individual changes to a list of ThirdPartyResource",
"nickname": "watchThirdPartyResourceList", "nickname": "watchThirdPartyResourceList",
...@@ -7278,7 +7278,7 @@ ...@@ -7278,7 +7278,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -7502,7 +7502,7 @@ ...@@ -7502,7 +7502,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ThirdPartyResource", "summary": "watch changes to an object of kind ThirdPartyResource",
"nickname": "watchThirdPartyResource", "nickname": "watchThirdPartyResource",
...@@ -7568,7 +7568,7 @@ ...@@ -7568,7 +7568,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -9291,9 +9291,20 @@ ...@@ -9291,9 +9291,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
"description": "API at /apis/policy/v1alpha1", "description": "API at /apis/policy/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PodDisruptionBudget", "summary": "watch individual changes to a list of PodDisruptionBudget",
"nickname": "watchNamespacedPodDisruptionBudgetList", "nickname": "watchNamespacedPodDisruptionBudgetList",
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -546,7 +546,7 @@ ...@@ -546,7 +546,7 @@
"description": "API at /apis/policy/v1alpha1", "description": "API at /apis/policy/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind PodDisruptionBudget", "summary": "watch changes to an object of kind PodDisruptionBudget",
"nickname": "watchNamespacedPodDisruptionBudget", "nickname": "watchNamespacedPodDisruptionBudget",
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
"description": "API at /apis/policy/v1alpha1", "description": "API at /apis/policy/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PodDisruptionBudget", "summary": "watch individual changes to a list of PodDisruptionBudget",
"nickname": "watchNamespacedPodDisruptionBudgetList", "nickname": "watchNamespacedPodDisruptionBudgetList",
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1327,9 +1327,20 @@ ...@@ -1327,9 +1327,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ClusterRoleBinding", "summary": "watch individual changes to a list of ClusterRoleBinding",
"nickname": "watchClusterRoleBindingList", "nickname": "watchClusterRoleBindingList",
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -466,7 +466,7 @@ ...@@ -466,7 +466,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ClusterRoleBinding", "summary": "watch changes to an object of kind ClusterRoleBinding",
"nickname": "watchClusterRoleBinding", "nickname": "watchClusterRoleBinding",
...@@ -532,7 +532,7 @@ ...@@ -532,7 +532,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -739,7 +739,7 @@ ...@@ -739,7 +739,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ClusterRole", "summary": "watch individual changes to a list of ClusterRole",
"nickname": "watchClusterRoleList", "nickname": "watchClusterRoleList",
...@@ -797,7 +797,7 @@ ...@@ -797,7 +797,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1005,7 +1005,7 @@ ...@@ -1005,7 +1005,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ClusterRole", "summary": "watch changes to an object of kind ClusterRole",
"nickname": "watchClusterRole", "nickname": "watchClusterRole",
...@@ -1071,7 +1071,7 @@ ...@@ -1071,7 +1071,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1302,7 +1302,7 @@ ...@@ -1302,7 +1302,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of RoleBinding", "summary": "watch individual changes to a list of RoleBinding",
"nickname": "watchNamespacedRoleBindingList", "nickname": "watchNamespacedRoleBindingList",
...@@ -1368,7 +1368,7 @@ ...@@ -1368,7 +1368,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1608,7 +1608,7 @@ ...@@ -1608,7 +1608,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind RoleBinding", "summary": "watch changes to an object of kind RoleBinding",
"nickname": "watchNamespacedRoleBinding", "nickname": "watchNamespacedRoleBinding",
...@@ -1682,7 +1682,7 @@ ...@@ -1682,7 +1682,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1779,7 +1779,7 @@ ...@@ -1779,7 +1779,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of RoleBinding", "summary": "watch individual changes to a list of RoleBinding",
"nickname": "watchNamespacedRoleBindingList", "nickname": "watchNamespacedRoleBindingList",
...@@ -1837,7 +1837,7 @@ ...@@ -1837,7 +1837,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2068,7 +2068,7 @@ ...@@ -2068,7 +2068,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Role", "summary": "watch individual changes to a list of Role",
"nickname": "watchNamespacedRoleList", "nickname": "watchNamespacedRoleList",
...@@ -2134,7 +2134,7 @@ ...@@ -2134,7 +2134,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2374,7 +2374,7 @@ ...@@ -2374,7 +2374,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Role", "summary": "watch changes to an object of kind Role",
"nickname": "watchNamespacedRole", "nickname": "watchNamespacedRole",
...@@ -2448,7 +2448,7 @@ ...@@ -2448,7 +2448,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2545,7 +2545,7 @@ ...@@ -2545,7 +2545,7 @@
"description": "API at /apis/rbac.authorization.k8s.io/v1alpha1", "description": "API at /apis/rbac.authorization.k8s.io/v1alpha1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Role", "summary": "watch individual changes to a list of Role",
"nickname": "watchNamespacedRoleList", "nickname": "watchNamespacedRoleList",
...@@ -2603,7 +2603,7 @@ ...@@ -2603,7 +2603,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2962,9 +2962,20 @@ ...@@ -2962,9 +2962,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
"description": "API at /apis/storage.k8s.io/v1beta1", "description": "API at /apis/storage.k8s.io/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of StorageClass", "summary": "watch individual changes to a list of StorageClass",
"nickname": "watchStorageClassList", "nickname": "watchStorageClassList",
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -482,7 +482,7 @@ ...@@ -482,7 +482,7 @@
"description": "API at /apis/storage.k8s.io/v1beta1", "description": "API at /apis/storage.k8s.io/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind StorageClass", "summary": "watch changes to an object of kind StorageClass",
"nickname": "watchStorageClass", "nickname": "watchStorageClass",
...@@ -548,7 +548,7 @@ ...@@ -548,7 +548,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -854,9 +854,20 @@ ...@@ -854,9 +854,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -399,7 +399,7 @@ ...@@ -399,7 +399,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ConfigMap", "summary": "watch individual changes to a list of ConfigMap",
"nickname": "watchNamespacedConfigMapList", "nickname": "watchNamespacedConfigMapList",
...@@ -465,7 +465,7 @@ ...@@ -465,7 +465,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -721,7 +721,7 @@ ...@@ -721,7 +721,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ConfigMap", "summary": "watch changes to an object of kind ConfigMap",
"nickname": "watchNamespacedConfigMap", "nickname": "watchNamespacedConfigMap",
...@@ -795,7 +795,7 @@ ...@@ -795,7 +795,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -892,7 +892,7 @@ ...@@ -892,7 +892,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ConfigMap", "summary": "watch individual changes to a list of ConfigMap",
"nickname": "watchNamespacedConfigMapList", "nickname": "watchNamespacedConfigMapList",
...@@ -950,7 +950,7 @@ ...@@ -950,7 +950,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1181,7 +1181,7 @@ ...@@ -1181,7 +1181,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Endpoints", "summary": "watch individual changes to a list of Endpoints",
"nickname": "watchNamespacedEndpointsList", "nickname": "watchNamespacedEndpointsList",
...@@ -1247,7 +1247,7 @@ ...@@ -1247,7 +1247,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1503,7 +1503,7 @@ ...@@ -1503,7 +1503,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Endpoints", "summary": "watch changes to an object of kind Endpoints",
"nickname": "watchNamespacedEndpoints", "nickname": "watchNamespacedEndpoints",
...@@ -1577,7 +1577,7 @@ ...@@ -1577,7 +1577,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1674,7 +1674,7 @@ ...@@ -1674,7 +1674,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Endpoints", "summary": "watch individual changes to a list of Endpoints",
"nickname": "watchNamespacedEndpointsList", "nickname": "watchNamespacedEndpointsList",
...@@ -1732,7 +1732,7 @@ ...@@ -1732,7 +1732,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1963,7 +1963,7 @@ ...@@ -1963,7 +1963,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Event", "summary": "watch individual changes to a list of Event",
"nickname": "watchNamespacedEventList", "nickname": "watchNamespacedEventList",
...@@ -2029,7 +2029,7 @@ ...@@ -2029,7 +2029,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2285,7 +2285,7 @@ ...@@ -2285,7 +2285,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Event", "summary": "watch changes to an object of kind Event",
"nickname": "watchNamespacedEvent", "nickname": "watchNamespacedEvent",
...@@ -2359,7 +2359,7 @@ ...@@ -2359,7 +2359,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2456,7 +2456,7 @@ ...@@ -2456,7 +2456,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Event", "summary": "watch individual changes to a list of Event",
"nickname": "watchNamespacedEventList", "nickname": "watchNamespacedEventList",
...@@ -2514,7 +2514,7 @@ ...@@ -2514,7 +2514,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2745,7 +2745,7 @@ ...@@ -2745,7 +2745,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of LimitRange", "summary": "watch individual changes to a list of LimitRange",
"nickname": "watchNamespacedLimitRangeList", "nickname": "watchNamespacedLimitRangeList",
...@@ -2811,7 +2811,7 @@ ...@@ -2811,7 +2811,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3067,7 +3067,7 @@ ...@@ -3067,7 +3067,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind LimitRange", "summary": "watch changes to an object of kind LimitRange",
"nickname": "watchNamespacedLimitRange", "nickname": "watchNamespacedLimitRange",
...@@ -3141,7 +3141,7 @@ ...@@ -3141,7 +3141,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3238,7 +3238,7 @@ ...@@ -3238,7 +3238,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of LimitRange", "summary": "watch individual changes to a list of LimitRange",
"nickname": "watchNamespacedLimitRangeList", "nickname": "watchNamespacedLimitRangeList",
...@@ -3296,7 +3296,7 @@ ...@@ -3296,7 +3296,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3503,7 +3503,7 @@ ...@@ -3503,7 +3503,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Namespace", "summary": "watch individual changes to a list of Namespace",
"nickname": "watchNamespaceList", "nickname": "watchNamespaceList",
...@@ -3561,7 +3561,7 @@ ...@@ -3561,7 +3561,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3785,7 +3785,7 @@ ...@@ -3785,7 +3785,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Namespace", "summary": "watch changes to an object of kind Namespace",
"nickname": "watchNamespace", "nickname": "watchNamespace",
...@@ -3851,7 +3851,7 @@ ...@@ -3851,7 +3851,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -4252,7 +4252,7 @@ ...@@ -4252,7 +4252,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Node", "summary": "watch individual changes to a list of Node",
"nickname": "watchNodeList", "nickname": "watchNodeList",
...@@ -4310,7 +4310,7 @@ ...@@ -4310,7 +4310,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -4534,7 +4534,7 @@ ...@@ -4534,7 +4534,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Node", "summary": "watch changes to an object of kind Node",
"nickname": "watchNode", "nickname": "watchNode",
...@@ -4600,7 +4600,7 @@ ...@@ -4600,7 +4600,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -5716,7 +5716,7 @@ ...@@ -5716,7 +5716,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PersistentVolumeClaim", "summary": "watch individual changes to a list of PersistentVolumeClaim",
"nickname": "watchNamespacedPersistentVolumeClaimList", "nickname": "watchNamespacedPersistentVolumeClaimList",
...@@ -5782,7 +5782,7 @@ ...@@ -5782,7 +5782,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -6038,7 +6038,7 @@ ...@@ -6038,7 +6038,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind PersistentVolumeClaim", "summary": "watch changes to an object of kind PersistentVolumeClaim",
"nickname": "watchNamespacedPersistentVolumeClaim", "nickname": "watchNamespacedPersistentVolumeClaim",
...@@ -6112,7 +6112,7 @@ ...@@ -6112,7 +6112,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -6209,7 +6209,7 @@ ...@@ -6209,7 +6209,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PersistentVolumeClaim", "summary": "watch individual changes to a list of PersistentVolumeClaim",
"nickname": "watchNamespacedPersistentVolumeClaimList", "nickname": "watchNamespacedPersistentVolumeClaimList",
...@@ -6267,7 +6267,7 @@ ...@@ -6267,7 +6267,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -6639,7 +6639,7 @@ ...@@ -6639,7 +6639,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PersistentVolume", "summary": "watch individual changes to a list of PersistentVolume",
"nickname": "watchPersistentVolumeList", "nickname": "watchPersistentVolumeList",
...@@ -6697,7 +6697,7 @@ ...@@ -6697,7 +6697,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -6921,7 +6921,7 @@ ...@@ -6921,7 +6921,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind PersistentVolume", "summary": "watch changes to an object of kind PersistentVolume",
"nickname": "watchPersistentVolume", "nickname": "watchPersistentVolume",
...@@ -6987,7 +6987,7 @@ ...@@ -6987,7 +6987,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -7359,7 +7359,7 @@ ...@@ -7359,7 +7359,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Pod", "summary": "watch individual changes to a list of Pod",
"nickname": "watchNamespacedPodList", "nickname": "watchNamespacedPodList",
...@@ -7425,7 +7425,7 @@ ...@@ -7425,7 +7425,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -7681,7 +7681,7 @@ ...@@ -7681,7 +7681,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Pod", "summary": "watch changes to an object of kind Pod",
"nickname": "watchNamespacedPod", "nickname": "watchNamespacedPod",
...@@ -7755,7 +7755,7 @@ ...@@ -7755,7 +7755,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -8272,7 +8272,7 @@ ...@@ -8272,7 +8272,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Pod", "summary": "watch individual changes to a list of Pod",
"nickname": "watchNamespacedPodList", "nickname": "watchNamespacedPodList",
...@@ -8330,7 +8330,7 @@ ...@@ -8330,7 +8330,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -9856,7 +9856,7 @@ ...@@ -9856,7 +9856,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PodTemplate", "summary": "watch individual changes to a list of PodTemplate",
"nickname": "watchNamespacedPodTemplateList", "nickname": "watchNamespacedPodTemplateList",
...@@ -9922,7 +9922,7 @@ ...@@ -9922,7 +9922,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -10178,7 +10178,7 @@ ...@@ -10178,7 +10178,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind PodTemplate", "summary": "watch changes to an object of kind PodTemplate",
"nickname": "watchNamespacedPodTemplate", "nickname": "watchNamespacedPodTemplate",
...@@ -10252,7 +10252,7 @@ ...@@ -10252,7 +10252,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -10349,7 +10349,7 @@ ...@@ -10349,7 +10349,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of PodTemplate", "summary": "watch individual changes to a list of PodTemplate",
"nickname": "watchNamespacedPodTemplateList", "nickname": "watchNamespacedPodTemplateList",
...@@ -10407,7 +10407,7 @@ ...@@ -10407,7 +10407,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -10638,7 +10638,7 @@ ...@@ -10638,7 +10638,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ReplicationController", "summary": "watch individual changes to a list of ReplicationController",
"nickname": "watchNamespacedReplicationControllerList", "nickname": "watchNamespacedReplicationControllerList",
...@@ -10704,7 +10704,7 @@ ...@@ -10704,7 +10704,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -10960,7 +10960,7 @@ ...@@ -10960,7 +10960,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ReplicationController", "summary": "watch changes to an object of kind ReplicationController",
"nickname": "watchNamespacedReplicationController", "nickname": "watchNamespacedReplicationController",
...@@ -11034,7 +11034,7 @@ ...@@ -11034,7 +11034,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -11131,7 +11131,7 @@ ...@@ -11131,7 +11131,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ReplicationController", "summary": "watch individual changes to a list of ReplicationController",
"nickname": "watchNamespacedReplicationControllerList", "nickname": "watchNamespacedReplicationControllerList",
...@@ -11189,7 +11189,7 @@ ...@@ -11189,7 +11189,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -11750,7 +11750,7 @@ ...@@ -11750,7 +11750,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ResourceQuota", "summary": "watch individual changes to a list of ResourceQuota",
"nickname": "watchNamespacedResourceQuotaList", "nickname": "watchNamespacedResourceQuotaList",
...@@ -11816,7 +11816,7 @@ ...@@ -11816,7 +11816,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -12072,7 +12072,7 @@ ...@@ -12072,7 +12072,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ResourceQuota", "summary": "watch changes to an object of kind ResourceQuota",
"nickname": "watchNamespacedResourceQuota", "nickname": "watchNamespacedResourceQuota",
...@@ -12146,7 +12146,7 @@ ...@@ -12146,7 +12146,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -12243,7 +12243,7 @@ ...@@ -12243,7 +12243,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ResourceQuota", "summary": "watch individual changes to a list of ResourceQuota",
"nickname": "watchNamespacedResourceQuotaList", "nickname": "watchNamespacedResourceQuotaList",
...@@ -12301,7 +12301,7 @@ ...@@ -12301,7 +12301,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -12697,7 +12697,7 @@ ...@@ -12697,7 +12697,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Secret", "summary": "watch individual changes to a list of Secret",
"nickname": "watchNamespacedSecretList", "nickname": "watchNamespacedSecretList",
...@@ -12763,7 +12763,7 @@ ...@@ -12763,7 +12763,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -13019,7 +13019,7 @@ ...@@ -13019,7 +13019,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Secret", "summary": "watch changes to an object of kind Secret",
"nickname": "watchNamespacedSecret", "nickname": "watchNamespacedSecret",
...@@ -13093,7 +13093,7 @@ ...@@ -13093,7 +13093,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -13190,7 +13190,7 @@ ...@@ -13190,7 +13190,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Secret", "summary": "watch individual changes to a list of Secret",
"nickname": "watchNamespacedSecretList", "nickname": "watchNamespacedSecretList",
...@@ -13248,7 +13248,7 @@ ...@@ -13248,7 +13248,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -13479,7 +13479,7 @@ ...@@ -13479,7 +13479,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ServiceAccount", "summary": "watch individual changes to a list of ServiceAccount",
"nickname": "watchNamespacedServiceAccountList", "nickname": "watchNamespacedServiceAccountList",
...@@ -13545,7 +13545,7 @@ ...@@ -13545,7 +13545,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -13801,7 +13801,7 @@ ...@@ -13801,7 +13801,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ServiceAccount", "summary": "watch changes to an object of kind ServiceAccount",
"nickname": "watchNamespacedServiceAccount", "nickname": "watchNamespacedServiceAccount",
...@@ -13875,7 +13875,7 @@ ...@@ -13875,7 +13875,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -13972,7 +13972,7 @@ ...@@ -13972,7 +13972,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ServiceAccount", "summary": "watch individual changes to a list of ServiceAccount",
"nickname": "watchNamespacedServiceAccountList", "nickname": "watchNamespacedServiceAccountList",
...@@ -14030,7 +14030,7 @@ ...@@ -14030,7 +14030,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -14182,7 +14182,7 @@ ...@@ -14182,7 +14182,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Service", "summary": "watch individual changes to a list of Service",
"nickname": "watchNamespacedServiceList", "nickname": "watchNamespacedServiceList",
...@@ -14248,7 +14248,7 @@ ...@@ -14248,7 +14248,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -14496,7 +14496,7 @@ ...@@ -14496,7 +14496,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Service", "summary": "watch changes to an object of kind Service",
"nickname": "watchNamespacedService", "nickname": "watchNamespacedService",
...@@ -14570,7 +14570,7 @@ ...@@ -14570,7 +14570,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -15087,7 +15087,7 @@ ...@@ -15087,7 +15087,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Service", "summary": "watch individual changes to a list of Service",
"nickname": "watchNamespacedServiceList", "nickname": "watchNamespacedServiceList",
...@@ -15145,7 +15145,7 @@ ...@@ -15145,7 +15145,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -16263,9 +16263,20 @@ ...@@ -16263,9 +16263,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -568,7 +568,41 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -568,7 +568,41 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3> <h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div> </div>
<div class="sect2"> <div class="sect2">
...@@ -1334,7 +1368,7 @@ Examples:<br> ...@@ -1334,7 +1368,7 @@ Examples:<br>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-08-23 04:34:20 UTC Last updated 2016-09-18 23:34:38 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -2007,7 +2007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2007,7 +2007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -2161,7 +2161,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2161,7 +2161,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -2323,7 +2323,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2323,7 +2323,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -2374,7 +2374,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2374,7 +2374,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-07-29 20:29:06 UTC Last updated 2016-09-18 23:34:38 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -383,6 +383,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -383,6 +383,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<h2 id="_definitions">Definitions</h2> <h2 id="_definitions">Definitions</h2>
<div class="sectionbody"> <div class="sectionbody">
<div class="sect2"> <div class="sect2">
<h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div>
<div class="sect2">
<h3 id="_v1_preconditions">v1.Preconditions</h3> <h3 id="_v1_preconditions">v1.Preconditions</h3>
<div class="paragraph"> <div class="paragraph">
<p>Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.</p> <p>Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.</p>
...@@ -1058,10 +1096,6 @@ Examples:<br> ...@@ -1058,10 +1096,6 @@ Examples:<br>
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3>
</div>
<div class="sect2">
<h3 id="_unversioned_statusdetails">unversioned.StatusDetails</h3> <h3 id="_unversioned_statusdetails">unversioned.StatusDetails</h3>
<div class="paragraph"> <div class="paragraph">
<p>StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.</p> <p>StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.</p>
...@@ -4287,7 +4321,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i ...@@ -4287,7 +4321,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-08-23 16:31:27 UTC Last updated 2016-09-18 23:34:31 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -2007,7 +2007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2007,7 +2007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -2161,7 +2161,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2161,7 +2161,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -2323,7 +2323,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2323,7 +2323,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -2374,7 +2374,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -2374,7 +2374,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-07-29 20:29:01 UTC Last updated 2016-09-18 23:34:31 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -620,7 +620,41 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -620,7 +620,41 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3> <h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div> </div>
<div class="sect2"> <div class="sect2">
...@@ -1311,7 +1345,7 @@ Examples:<br> ...@@ -1311,7 +1345,7 @@ Examples:<br>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-09-01 18:34:11 UTC Last updated 2016-09-18 23:34:44 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -1667,7 +1667,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -1667,7 +1667,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -1821,7 +1821,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -1821,7 +1821,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -1872,7 +1872,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -1872,7 +1872,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-09-01 18:34:11 UTC Last updated 2016-09-18 23:34:44 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -1415,10 +1415,6 @@ Examples:<br> ...@@ -1415,10 +1415,6 @@ Examples:<br>
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3>
</div>
<div class="sect2">
<h3 id="_v1beta1_jobstatus">v1beta1.JobStatus</h3> <h3 id="_v1beta1_jobstatus">v1beta1.JobStatus</h3>
<div class="paragraph"> <div class="paragraph">
<p>JobStatus represents the current state of a Job.</p> <p>JobStatus represents the current state of a Job.</p>
...@@ -4176,6 +4172,44 @@ Populated by the system when a graceful deletion is requested. Read-only. More i ...@@ -4176,6 +4172,44 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div>
<div class="sect2">
<h3 id="_v1beta1_scalestatus">v1beta1.ScaleStatus</h3> <h3 id="_v1beta1_scalestatus">v1beta1.ScaleStatus</h3>
<div class="paragraph"> <div class="paragraph">
<p>represents the current status of a scale subresource.</p> <p>represents the current status of a scale subresource.</p>
...@@ -6556,7 +6590,7 @@ Both these may change in the future. Incoming requests are matched against the h ...@@ -6556,7 +6590,7 @@ Both these may change in the future. Incoming requests are matched against the h
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-09-01 17:31:18 UTC Last updated 2016-09-18 23:34:24 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -12569,7 +12569,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -12569,7 +12569,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -12715,7 +12715,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -12715,7 +12715,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -12861,7 +12861,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -12861,7 +12861,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -13007,7 +13007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -13007,7 +13007,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -13153,7 +13153,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -13153,7 +13153,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -13307,7 +13307,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -13307,7 +13307,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -13469,7 +13469,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -13469,7 +13469,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -13623,7 +13623,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -13623,7 +13623,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -13785,7 +13785,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -13785,7 +13785,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -13939,7 +13939,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -13939,7 +13939,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -14101,7 +14101,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -14101,7 +14101,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -14255,7 +14255,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -14255,7 +14255,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -14417,7 +14417,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -14417,7 +14417,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -14571,7 +14571,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -14571,7 +14571,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -14733,7 +14733,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -14733,7 +14733,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -14887,7 +14887,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -14887,7 +14887,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -15049,7 +15049,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -15049,7 +15049,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -15203,7 +15203,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -15203,7 +15203,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -15365,7 +15365,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -15365,7 +15365,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -15511,7 +15511,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -15511,7 +15511,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -15657,7 +15657,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -15657,7 +15657,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -15803,7 +15803,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -15803,7 +15803,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -15957,7 +15957,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -15957,7 +15957,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -16008,7 +16008,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -16008,7 +16008,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-09-01 17:31:18 UTC Last updated 2016-09-18 23:34:24 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -1415,10 +1415,6 @@ Examples:<br> ...@@ -1415,10 +1415,6 @@ Examples:<br>
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3>
</div>
<div class="sect2">
<h3 id="_v1_endpointslist">v1.EndpointsList</h3> <h3 id="_v1_endpointslist">v1.EndpointsList</h3>
<div class="paragraph"> <div class="paragraph">
<p>EndpointsList is a list of endpoints.</p> <p>EndpointsList is a list of endpoints.</p>
...@@ -5174,6 +5170,44 @@ The resulting set of endpoints can be viewed as:<br> ...@@ -5174,6 +5170,44 @@ The resulting set of endpoints can be viewed as:<br>
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div>
<div class="sect2">
<h3 id="_v1_podtemplate">v1.PodTemplate</h3> <h3 id="_v1_podtemplate">v1.PodTemplate</h3>
<div class="paragraph"> <div class="paragraph">
<p>PodTemplate describes a template for creating copies of a predefined pod.</p> <p>PodTemplate describes a template for creating copies of a predefined pod.</p>
...@@ -8434,7 +8468,7 @@ The resulting set of endpoints can be viewed as:<br> ...@@ -8434,7 +8468,7 @@ The resulting set of endpoints can be viewed as:<br>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-09-17 23:35:57 UTC Last updated 2016-09-19 23:42:42 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -26449,7 +26449,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -26449,7 +26449,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -26595,7 +26595,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -26595,7 +26595,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -26741,7 +26741,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -26741,7 +26741,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -26887,7 +26887,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -26887,7 +26887,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -27033,7 +27033,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -27033,7 +27033,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -27187,7 +27187,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -27187,7 +27187,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -27349,7 +27349,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -27349,7 +27349,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -27503,7 +27503,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -27503,7 +27503,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -27665,7 +27665,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -27665,7 +27665,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -27819,7 +27819,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -27819,7 +27819,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -27981,7 +27981,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -27981,7 +27981,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -28135,7 +28135,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -28135,7 +28135,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -28297,7 +28297,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -28297,7 +28297,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -28451,7 +28451,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -28451,7 +28451,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -28613,7 +28613,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -28613,7 +28613,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -28767,7 +28767,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -28767,7 +28767,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -28929,7 +28929,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -28929,7 +28929,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -29083,7 +29083,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -29083,7 +29083,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -29245,7 +29245,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -29245,7 +29245,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -29399,7 +29399,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -29399,7 +29399,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -29561,7 +29561,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -29561,7 +29561,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -29715,7 +29715,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -29715,7 +29715,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -29877,7 +29877,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -29877,7 +29877,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -30031,7 +30031,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -30031,7 +30031,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -30193,7 +30193,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -30193,7 +30193,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -30347,7 +30347,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -30347,7 +30347,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -30509,7 +30509,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -30509,7 +30509,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -30663,7 +30663,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -30663,7 +30663,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -30825,7 +30825,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -30825,7 +30825,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -30979,7 +30979,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -30979,7 +30979,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -31125,7 +31125,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -31125,7 +31125,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -31279,7 +31279,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -31279,7 +31279,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -31425,7 +31425,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -31425,7 +31425,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -31571,7 +31571,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -31571,7 +31571,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -31725,7 +31725,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -31725,7 +31725,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -31871,7 +31871,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -31871,7 +31871,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -32017,7 +32017,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -32017,7 +32017,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -32163,7 +32163,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -32163,7 +32163,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -32309,7 +32309,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -32309,7 +32309,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -32455,7 +32455,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -32455,7 +32455,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -32601,7 +32601,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -32601,7 +32601,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -32747,7 +32747,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -32747,7 +32747,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -32798,7 +32798,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -32798,7 +32798,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-08-22 23:33:31 UTC Last updated 2016-09-18 23:34:17 UTC
</div> </div>
</div> </div>
</body> </body>
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Ingress", "summary": "watch individual changes to a list of Ingress",
"nickname": "watchNamespacedIngressList", "nickname": "watchNamespacedIngressList",
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -546,7 +546,7 @@ ...@@ -546,7 +546,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Ingress", "summary": "watch changes to an object of kind Ingress",
"nickname": "watchNamespacedIngress", "nickname": "watchNamespacedIngress",
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Ingress", "summary": "watch individual changes to a list of Ingress",
"nickname": "watchNamespacedIngressList", "nickname": "watchNamespacedIngressList",
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1171,7 +1171,7 @@ ...@@ -1171,7 +1171,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ReplicaSet", "summary": "watch individual changes to a list of ReplicaSet",
"nickname": "watchNamespacedReplicaSetList", "nickname": "watchNamespacedReplicaSetList",
...@@ -1237,7 +1237,7 @@ ...@@ -1237,7 +1237,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1493,7 +1493,7 @@ ...@@ -1493,7 +1493,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind ReplicaSet", "summary": "watch changes to an object of kind ReplicaSet",
"nickname": "watchNamespacedReplicaSet", "nickname": "watchNamespacedReplicaSet",
...@@ -1567,7 +1567,7 @@ ...@@ -1567,7 +1567,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1664,7 +1664,7 @@ ...@@ -1664,7 +1664,7 @@
"description": "API at /apis/extensions/v1beta1", "description": "API at /apis/extensions/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of ReplicaSet", "summary": "watch individual changes to a list of ReplicaSet",
"nickname": "watchNamespacedReplicaSetList", "nickname": "watchNamespacedReplicaSetList",
...@@ -1722,7 +1722,7 @@ ...@@ -1722,7 +1722,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2497,9 +2497,20 @@ ...@@ -2497,9 +2497,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
"description": "API at /apis/federation/v1beta1", "description": "API at /apis/federation/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Cluster", "summary": "watch individual changes to a list of Cluster",
"nickname": "watchClusterList", "nickname": "watchClusterList",
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -482,7 +482,7 @@ ...@@ -482,7 +482,7 @@
"description": "API at /apis/federation/v1beta1", "description": "API at /apis/federation/v1beta1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Cluster", "summary": "watch changes to an object of kind Cluster",
"nickname": "watchCluster", "nickname": "watchCluster",
...@@ -548,7 +548,7 @@ ...@@ -548,7 +548,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -881,7 +881,7 @@ ...@@ -881,7 +881,7 @@
"items": { "items": {
"type": "string" "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": { "region": {
"type": "string", "type": "string",
...@@ -1012,9 +1012,20 @@ ...@@ -1012,9 +1012,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -16,7 +16,16 @@ ...@@ -16,7 +16,16 @@
"type": "void", "type": "void",
"method": "GET", "method": "GET",
"nickname": "logFileHandler", "nickname": "logFileHandler",
"parameters": [] "parameters": [
{
"type": "string",
"paramType": "path",
"name": "logpath",
"description": "path to the log",
"required": true,
"allowMultiple": false
}
]
} }
] ]
}, },
......
...@@ -2,10 +2,6 @@ ...@@ -2,10 +2,6 @@
"swaggerVersion": "1.2", "swaggerVersion": "1.2",
"apis": [ "apis": [
{ {
"path": "/logs",
"description": "get log files"
},
{
"path": "/version", "path": "/version",
"description": "git code version from which this is built" "description": "git code version from which this is built"
}, },
...@@ -14,6 +10,10 @@ ...@@ -14,6 +10,10 @@
"description": "get available API versions" "description": "get available API versions"
}, },
{ {
"path": "/logs",
"description": "get log files"
},
{
"path": "/apis/federation/v1beta1", "path": "/apis/federation/v1beta1",
"description": "API at /apis/federation/v1beta1" "description": "API at /apis/federation/v1beta1"
}, },
......
...@@ -224,7 +224,7 @@ ...@@ -224,7 +224,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Event", "summary": "watch individual changes to a list of Event",
"nickname": "watchNamespacedEventList", "nickname": "watchNamespacedEventList",
...@@ -290,7 +290,7 @@ ...@@ -290,7 +290,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -546,7 +546,7 @@ ...@@ -546,7 +546,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Event", "summary": "watch changes to an object of kind Event",
"nickname": "watchNamespacedEvent", "nickname": "watchNamespacedEvent",
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Event", "summary": "watch individual changes to a list of Event",
"nickname": "watchNamespacedEventList", "nickname": "watchNamespacedEventList",
...@@ -775,7 +775,7 @@ ...@@ -775,7 +775,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -982,7 +982,7 @@ ...@@ -982,7 +982,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Namespace", "summary": "watch individual changes to a list of Namespace",
"nickname": "watchNamespaceList", "nickname": "watchNamespaceList",
...@@ -1040,7 +1040,7 @@ ...@@ -1040,7 +1040,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1264,7 +1264,7 @@ ...@@ -1264,7 +1264,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Namespace", "summary": "watch changes to an object of kind Namespace",
"nickname": "watchNamespace", "nickname": "watchNamespace",
...@@ -1330,7 +1330,7 @@ ...@@ -1330,7 +1330,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -1755,7 +1755,7 @@ ...@@ -1755,7 +1755,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Secret", "summary": "watch individual changes to a list of Secret",
"nickname": "watchNamespacedSecretList", "nickname": "watchNamespacedSecretList",
...@@ -1821,7 +1821,7 @@ ...@@ -1821,7 +1821,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2077,7 +2077,7 @@ ...@@ -2077,7 +2077,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Secret", "summary": "watch changes to an object of kind Secret",
"nickname": "watchNamespacedSecret", "nickname": "watchNamespacedSecret",
...@@ -2151,7 +2151,7 @@ ...@@ -2151,7 +2151,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2248,7 +2248,7 @@ ...@@ -2248,7 +2248,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Secret", "summary": "watch individual changes to a list of Secret",
"nickname": "watchNamespacedSecretList", "nickname": "watchNamespacedSecretList",
...@@ -2306,7 +2306,7 @@ ...@@ -2306,7 +2306,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2537,7 +2537,7 @@ ...@@ -2537,7 +2537,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Service", "summary": "watch individual changes to a list of Service",
"nickname": "watchNamespacedServiceList", "nickname": "watchNamespacedServiceList",
...@@ -2603,7 +2603,7 @@ ...@@ -2603,7 +2603,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -2859,7 +2859,7 @@ ...@@ -2859,7 +2859,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch changes to an object of kind Service", "summary": "watch changes to an object of kind Service",
"nickname": "watchNamespacedService", "nickname": "watchNamespacedService",
...@@ -2933,7 +2933,7 @@ ...@@ -2933,7 +2933,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3030,7 +3030,7 @@ ...@@ -3030,7 +3030,7 @@
"description": "API at /api/v1", "description": "API at /api/v1",
"operations": [ "operations": [
{ {
"type": "*versioned.Event", "type": "versioned.Event",
"method": "GET", "method": "GET",
"summary": "watch individual changes to a list of Service", "summary": "watch individual changes to a list of Service",
"nickname": "watchNamespacedServiceList", "nickname": "watchNamespacedServiceList",
...@@ -3088,7 +3088,7 @@ ...@@ -3088,7 +3088,7 @@
{ {
"code": 200, "code": 200,
"message": "OK", "message": "OK",
"responseModel": "*versioned.Event" "responseModel": "versioned.Event"
} }
], ],
"produces": [ "produces": [
...@@ -3635,9 +3635,20 @@ ...@@ -3635,9 +3635,20 @@
} }
} }
}, },
"*versioned.Event": { "versioned.Event": {
"id": "*versioned.Event", "id": "versioned.Event",
"properties": {} "required": [
"type",
"object"
],
"properties": {
"type": {
"type": "string"
},
"object": {
"type": "string"
}
}
}, },
"unversioned.Patch": { "unversioned.Patch": {
"id": "unversioned.Patch", "id": "unversioned.Patch",
......
...@@ -392,6 +392,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -392,6 +392,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<h2 id="_definitions">Definitions</h2> <h2 id="_definitions">Definitions</h2>
<div class="sectionbody"> <div class="sectionbody">
<div class="sect2"> <div class="sect2">
<h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div>
<div class="sect2">
<h3 id="_v1_preconditions">v1.Preconditions</h3> <h3 id="_v1_preconditions">v1.Preconditions</h3>
<div class="paragraph"> <div class="paragraph">
<p>Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.</p> <p>Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.</p>
...@@ -1332,10 +1370,6 @@ Both these may change in the future. Incoming requests are matched against the h ...@@ -1332,10 +1370,6 @@ Both these may change in the future. Incoming requests are matched against the h
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3>
</div>
<div class="sect2">
<h3 id="_unversioned_statusdetails">unversioned.StatusDetails</h3> <h3 id="_unversioned_statusdetails">unversioned.StatusDetails</h3>
<div class="paragraph"> <div class="paragraph">
<p>StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.</p> <p>StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.</p>
...@@ -4813,7 +4847,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i ...@@ -4813,7 +4847,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-09-06 18:38:37 UTC Last updated 2016-09-18 23:35:09 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -3851,7 +3851,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -3851,7 +3851,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -4005,7 +4005,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -4005,7 +4005,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -4167,7 +4167,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -4167,7 +4167,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -4321,7 +4321,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -4321,7 +4321,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -4483,7 +4483,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -4483,7 +4483,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -4629,7 +4629,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -4629,7 +4629,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -4680,7 +4680,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -4680,7 +4680,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-08-31 00:15:20 UTC Last updated 2016-09-18 23:35:09 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -492,10 +492,6 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -492,10 +492,6 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3>
</div>
<div class="sect2">
<h3 id="_v1beta1_clusterlist">v1beta1.ClusterList</h3> <h3 id="_v1beta1_clusterlist">v1beta1.ClusterList</h3>
<div class="paragraph"> <div class="paragraph">
<p>A list of all the kubernetes clusters registered to the federation</p> <p>A list of all the kubernetes clusters registered to the federation</p>
...@@ -613,6 +609,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -613,6 +609,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div>
<div class="sect2">
<h3 id="_unversioned_listmeta">unversioned.ListMeta</h3> <h3 id="_unversioned_listmeta">unversioned.ListMeta</h3>
<div class="paragraph"> <div class="paragraph">
<p>ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.</p> <p>ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.</p>
...@@ -685,7 +719,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -685,7 +719,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</tr> </tr>
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">zones</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">zones</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">Zones is the list of avaliability zones in which the nodes of the cluster exist, e.g. <em>us-east1-a</em>. These will always be in the same region.</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Zones is the list of availability zones in which the nodes of the cluster exist, e.g. <em>us-east1-a</em>. These will always be in the same region.</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string array</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">string array</p></td>
<td class="tableblock halign-left valign-top"></td> <td class="tableblock halign-left valign-top"></td>
...@@ -1402,7 +1436,7 @@ Examples:<br> ...@@ -1402,7 +1436,7 @@ Examples:<br>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-08-31 00:15:09 UTC Last updated 2016-09-18 23:34:58 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -1548,7 +1548,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -1548,7 +1548,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -1702,7 +1702,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -1702,7 +1702,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -1753,7 +1753,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -1753,7 +1753,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-08-31 00:15:09 UTC Last updated 2016-09-18 23:34:58 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -465,6 +465,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -465,6 +465,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="_versioned_event">versioned.Event</h3>
<table class="tableblock frame-all grid-all" style="width:100%; ">
<colgroup>
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
<col style="width:20%;">
</colgroup>
<thead>
<tr>
<th class="tableblock halign-left valign-top">Name</th>
<th class="tableblock halign-left valign-top">Description</th>
<th class="tableblock halign-left valign-top">Required</th>
<th class="tableblock halign-left valign-top">Schema</th>
<th class="tableblock halign-left valign-top">Default</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">type</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
<tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">object</p></td>
<td class="tableblock halign-left valign-top"></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
<td class="tableblock halign-left valign-top"></td>
</tr>
</tbody>
</table>
</div>
<div class="sect2">
<h3 id="_v1_namespace">v1.Namespace</h3> <h3 id="_v1_namespace">v1.Namespace</h3>
<div class="paragraph"> <div class="paragraph">
<p>Namespace provides a scope for Names. Use of multiple namespaces is optional.</p> <p>Namespace provides a scope for Names. Use of multiple namespaces is optional.</p>
...@@ -1149,10 +1187,6 @@ Examples:<br> ...@@ -1149,10 +1187,6 @@ Examples:<br>
</div> </div>
<div class="sect2"> <div class="sect2">
<h3 id="__versioned_event">*versioned.Event</h3>
</div>
<div class="sect2">
<h3 id="_unversioned_statusdetails">unversioned.StatusDetails</h3> <h3 id="_unversioned_statusdetails">unversioned.StatusDetails</h3>
<div class="paragraph"> <div class="paragraph">
<p>StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.</p> <p>StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.</p>
...@@ -2047,7 +2081,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i ...@@ -2047,7 +2081,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-08-31 00:15:14 UTC Last updated 2016-09-18 23:35:03 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -5540,7 +5540,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -5540,7 +5540,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -5686,7 +5686,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -5686,7 +5686,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -5840,7 +5840,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -5840,7 +5840,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -6002,7 +6002,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -6002,7 +6002,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -6156,7 +6156,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -6156,7 +6156,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -6318,7 +6318,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -6318,7 +6318,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -6472,7 +6472,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -6472,7 +6472,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -6634,7 +6634,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -6634,7 +6634,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -6788,7 +6788,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -6788,7 +6788,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -6934,7 +6934,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -6934,7 +6934,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -7080,7 +7080,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -7080,7 +7080,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
<tr> <tr>
<td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">200</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">success</p></td>
<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_*versioned_event">*versioned.Event</a></p></td> <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../definitions#_versioned_event">versioned.Event</a></p></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
...@@ -7131,7 +7131,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } ...@@ -7131,7 +7131,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Last updated 2016-09-06 18:38:31 UTC Last updated 2016-09-18 23:35:03 UTC
</div> </div>
</div> </div>
</body> </body>
......
...@@ -287,12 +287,13 @@ func (a *APIInstaller) registerResourceHandlers(path string, storage rest.Storag ...@@ -287,12 +287,13 @@ func (a *APIInstaller) registerResourceHandlers(path string, storage rest.Storag
isGetter = true isGetter = true
} }
var versionedWatchEvent runtime.Object var versionedWatchEvent interface{}
if isWatcher { 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 { if err != nil {
return nil, err return nil, err
} }
versionedWatchEvent = indirectArbitraryPointer(versionedWatchEventPtr)
} }
var ( var (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment