{ "opencollection": "1.0.0", "info": { "name": "Knative Eventing Apis Brokers API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Brokers", "type": "folder" }, "items": [ { "info": { "name": "Knative List Brokers", "type": "http" }, "http": { "method": "GET", "url": "https://kubernetes.default.svc/apis/eventing.knative.dev/v1/namespaces/:namespace/brokers", "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 Broker resources in the specified namespace. Brokers act as event ingestion points and route events to matching Triggers based on CloudEvent attribute filters." }, { "info": { "name": "Knative Create a Broker", "type": "http" }, "http": { "method": "POST", "url": "https://kubernetes.default.svc/apis/eventing.knative.dev/v1/namespaces/:namespace/brokers", "params": [ { "name": "namespace", "value": "", "type": "path", "description": "Kubernetes namespace containing the resource." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Broker resource. Brokers collect events sent to them and deliver events to all Triggers associated with the Broker whose filters match the event. Optionally configure delivery settings for dead-letter sinks and retry policies." }, { "info": { "name": "Knative Get a Broker", "type": "http" }, "http": { "method": "GET", "url": "https://kubernetes.default.svc/apis/eventing.knative.dev/v1/namespaces/:namespace/brokers/: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 Broker resource including its delivery configuration and status conditions reflecting whether it is Ready and its ingress address." }, { "info": { "name": "Knative Delete a Broker", "type": "http" }, "http": { "method": "DELETE", "url": "https://kubernetes.default.svc/apis/eventing.knative.dev/v1/namespaces/:namespace/brokers/: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 Broker. All associated Triggers must be deleted first or they will fail to find their target Broker. In-flight events may be lost upon deletion." } ] } ], "bundled": true }