From cb16afd4e2928cf2ff41ba179b585858dd3cc39d Mon Sep 17 00:00:00 2001 From: Tom Kerkhove Date: Sun, 27 Dec 2020 13:53:31 +0100 Subject: [PATCH 1/5] Alphabetically order Microsoft Azure bindings --- .../components/setup-bindings/supported-bindings/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/_index.md b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/_index.md index cc339776e..72b0817bf 100644 --- a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/_index.md +++ b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/_index.md @@ -49,9 +49,9 @@ Every binding has its own unique set of properties. Click the name link to see t | Name | Input
Binding | Output
Binding | Status | |------|:----------------:|:-----------------:|--------| | [Azure Blob Storage]({{< ref blobstorage.md >}}) | | ✅ | Experimental | -| [Azure EventHubs]({{< ref eventhubs.md >}}) | ✅ | ✅ | Experimental | | [Azure CosmosDB]({{< ref cosmosdb.md >}}) | | ✅ | Experimental | +| [Azure Event Grid]({{< ref eventgrid.md >}}) | ✅ | ✅ | Experimental | +| [Azure Event Hubs]({{< ref eventhubs.md >}}) | ✅ | ✅ | Experimental | | [Azure Service Bus Queues]({{< ref servicebusqueues.md >}}) | ✅ | ✅ | Experimental | | [Azure SignalR]({{< ref signalr.md >}}) | | ✅ | Experimental | | [Azure Storage Queues]({{< ref storagequeues.md >}}) | ✅ | ✅ | Experimental | -| [Azure Event Grid]({{< ref eventgrid.md >}}) | ✅ | ✅ | Experimental | From bee1ae08300213c43ac4672b4a7b663ab26387b5 Mon Sep 17 00:00:00 2001 From: Newbe36524 Date: Wed, 30 Dec 2020 08:30:02 +0800 Subject: [PATCH 2/5] Update apns.md (#1058) remove leading empty line --- .../components/setup-bindings/supported-bindings/apns.md | 1 - 1 file changed, 1 deletion(-) diff --git a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md index 76aa5c5dc..81035a7ca 100644 --- a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md +++ b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md @@ -1,4 +1,3 @@ - --- type: docs title: "Apple Push Notification Service binding spec" From 1f0b5e8879d43735ab30e6153f4b68f8a95846e3 Mon Sep 17 00:00:00 2001 From: gaoxinge Date: Fri, 1 Jan 2021 01:47:56 +0800 Subject: [PATCH 3/5] refine code align in middleware concept (#1066) * refine code align * refine code align --- daprdocs/content/en/concepts/middleware-concept.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daprdocs/content/en/concepts/middleware-concept.md b/daprdocs/content/en/concepts/middleware-concept.md index 405826103..8c04043e2 100644 --- a/daprdocs/content/en/concepts/middleware-concept.md +++ b/daprdocs/content/en/concepts/middleware-concept.md @@ -49,9 +49,9 @@ Your handler implementation can include any inbound logic, outbound logic, or bo func GetHandler(metadata Metadata) fasthttp.RequestHandler { return func(h fasthttp.RequestHandler) fasthttp.RequestHandler { return func(ctx *fasthttp.RequestCtx) { - //inboud logic - h(ctx) //call the downstream handler - //outbound logic + // inboud logic + h(ctx) // call the downstream handler + // outbound logic } } } From 388591bed9b0cd6447f15eb0f4850ba6c093159d Mon Sep 17 00:00:00 2001 From: Tom Kerkhove Date: Sat, 2 Jan 2021 18:11:23 +0100 Subject: [PATCH 4/5] Fix typo in Kubernetes binding docs (#1060) --- .../setup-bindings/supported-bindings/kubernetes-binding.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/kubernetes-binding.md b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/kubernetes-binding.md index 165c2673f..cdab04a66 100644 --- a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/kubernetes-binding.md +++ b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/kubernetes-binding.md @@ -63,7 +63,7 @@ Three different event types are available: - Delete : Only the `oldVal` field is populated, `newVal` field is an empty `v1.Event`, `event` is `delete` - Update : Both the `oldVal` and `newVal` fields are populated, `event` is `update` -## Required permisiions +## Required permissions For consuming `events` from Kubernetes, permissions need to be assigned to a User/Group/ServiceAccount using [RBAC Auth] mechanism of Kubernetes. @@ -105,4 +105,4 @@ roleRef: - [Bindings building block]({{< ref bindings >}}) - [How-To: Trigger application with input binding]({{< ref howto-triggers.md >}}) - [How-To: Use bindings to interface with external resources]({{< ref howto-bindings.md >}}) -- [Bindings API reference]({{< ref bindings_api.md >}}) \ No newline at end of file +- [Bindings API reference]({{< ref bindings_api.md >}}) From 4ee8bf2f197a2711fbdf9b5aa1bacfc3f9c686f3 Mon Sep 17 00:00:00 2001 From: Jayesh Sharma <37150991+wjayesh@users.noreply.github.com> Date: Sat, 2 Jan 2021 23:17:11 +0530 Subject: [PATCH 5/5] update link (#1068) --- .../building-blocks/bindings/howto-bindings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md b/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md index 8d3029d6a..cc26653fc 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md +++ b/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md @@ -57,7 +57,7 @@ As seen above, you invoked the `/binding` endpoint with the name of the binding The payload goes inside the mandatory `data` field, and can be any JSON serializable value. You'll also notice that there's an `operation` field that tells the binding what you need it to do. -You can check [here]({{< ref bindings >}}) which operations are supported for every output binding. +You can check [here]({{< ref supported-bindings >}}) which operations are supported for every output binding. ## References