{ "opencollection": "1.0.0", "info": { "name": "Knative Eventing Apis Channels API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Channels", "type": "folder" }, "items": [ { "info": { "name": "Knative List Channels", "type": "http" }, "http": { "method": "GET", "url": "https://kubernetes.default.svc/apis/messaging.knative.dev/v1/namespaces/:namespace/channels", "params": [ { "name": "namespace", "value": "", "type": "path", "description": "Kubernetes namespace containing the resource." }, { "name": "labelSelector", "value": "", "type": "query", "description": "Selector to filter resources by label key-value pairs." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return in a single response." }, { "name": "continue", "value": "", "type": "query", "description": "Pagination token returned by a previous list call." } ] }, "docs": "Returns a list of all Channel resources in the specified namespace. Channels provide a generic pub/sub interface and fan events out to all Subscriptions." }, { "info": { "name": "Knative Create a Channel", "type": "http" }, "http": { "method": "POST", "url": "https://kubernetes.default.svc/apis/messaging.knative.dev/v1/namespaces/:namespace/channels", "params": [ { "name": "namespace", "value": "", "type": "path", "description": "Kubernetes namespace containing the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Channel resource. Channels receive events and deliver them to all associated Subscriptions independently. The Channel implementation type is specified via channelTemplate." }, { "info": { "name": "Knative Get a Channel", "type": "http" }, "http": { "method": "GET", "url": "https://kubernetes.default.svc/apis/messaging.knative.dev/v1/namespaces/:namespace/channels/:name", "params": [ { "name": "namespace", "value": "", "type": "path", "description": "Kubernetes namespace containing the resource." }, { "name": "name", "value": "", "type": "path", "description": "Name of the Knative resource." } ] }, "docs": "Returns details of a specific Channel including its channel template, delivery configuration, and status conditions." }, { "info": { "name": "Knative Delete a Channel", "type": "http" }, "http": { "method": "DELETE", "url": "https://kubernetes.default.svc/apis/messaging.knative.dev/v1/namespaces/:namespace/channels/:name", "params": [ { "name": "namespace", "value": "", "type": "path", "description": "Kubernetes namespace containing the resource." }, { "name": "name", "value": "", "type": "path", "description": "Name of the Knative resource." } ] }, "docs": "Deletes a Channel and all of its Subscriptions. In-flight events may be lost upon deletion." } ] } ], "bundled": true }