Move binding specs

This commit is contained in:
Aaron Crawfis 2020-03-09 09:42:39 -07:00
parent 38bd298c5b
commit 504fe8e02f
28 changed files with 37 additions and 27 deletions

View File

@ -20,40 +20,40 @@ Every binding has its own unique set of properties. Click the name link to see t
| Name | Input<br>Binding | Output<br>Binding | Status |
|------|:----------------:|:-----------------:|--------|
| [HTTP](./specs/http.md) | | ✅ | Experimental |
| [Kafka](./specs/kafka.md) | ✅ | ✅ | Experimental |
| [Kubernetes Events](./kubernetes) | ✅ | | Experimental |
| [MQTT](./specs/mqtt.md) | ✅ | ✅ | Experimental |
| [RabbitMQ](./specs/rabbitmq.md) | ✅ | ✅ | Experimental |
| [Redis](./specs/redis.md) | | ✅ | Experimental |
| [Twilio](./specs/twilio.md) | | ✅ | Experimental |
| [HTTP](../../reference/specs/bindings/http.md) | | ✅ | Experimental |
| [Kafka](../../reference/specs/bindings/kafka.md) | ✅ | ✅ | Experimental |
| [Kubernetes Events](../../reference/specs/bindings/kubernetes) | ✅ | | Experimental |
| [MQTT](../../reference/specs/bindings/mqtt.md) | ✅ | ✅ | Experimental |
| [RabbitMQ](../../reference/specs/bindings/rabbitmq.md) | ✅ | ✅ | Experimental |
| [Redis](../../reference/specs/bindings/redis.md) | | ✅ | Experimental |
| [Twilio](../../reference/specs/bindings/twilio.md) | | ✅ | Experimental |
### Amazon Web Service (AWS)
| Name | Input<br>Binding | Output<br>Binding | Status |
|------|:----------------:|:-----------------:|--------|
| [AWS DynamoDB](./specs/dynamodb.md) | | ✅ | Experimental |
| [AWS S3](./specs/s3.md) | | ✅ | Experimental |
| [AWS SNS](./specs/sns.md) | | ✅ | Experimental |
| [AWS SQS](./specs/sqs.md) | ✅ | ✅ | Experimental |
| [AWS DynamoDB](../../reference/specs/bindings/dynamodb.md) | | ✅ | Experimental |
| [AWS S3](../../reference/specs/bindings/s3.md) | | ✅ | Experimental |
| [AWS SNS](../../reference/specs/bindings/sns.md) | | ✅ | Experimental |
| [AWS SQS](../../reference/specs/bindings/sqs.md) | ✅ | ✅ | Experimental |
### Google Cloud Platform (GCP)
| Name | Input<br>Binding | Output<br>Binding | Status |
|------|:----------------:|:-----------------:|--------|
| [GCP Cloud Pub/Sub](./specs/gcppubsub.md) | ✅ | ✅ | Experimental |
| [GCP Storage Bucket](./specs/gcpbucket.md) | | ✅ | Experimental |
| [GCP Cloud Pub/Sub](../../reference/specs/bindings/gcppubsub.md) | ✅ | ✅ | Experimental |
| [GCP Storage Bucket](../../reference/specs/bindings/gcpbucket.md) | | ✅ | Experimental |
### Microsoft Azure
| Name | Input<br>Binding | Output<br>Binding | Status |
|------|:----------------:|:-----------------:|--------|
| [Azure Blob Storage](./specs/blobstorage.md) | | ✅ | Experimental |
| [Azure EventHubs](./specs/eventhubs.md) | ✅ | ✅ | Experimental |
| [Azure CosmosDB](./specs/cosmosdb.md) | | ✅ | Experimental |
| [Azure Service Bus Queues](./specs/servicebusqueues.md) | ✅ | ✅ | Experimental |
| [Azure SignalR](./specs/signalr.md) | | ✅ | Experimental |
| [Azure Storage Queues](./specs/storagequeues.md) | ✅ | ✅ | Experimental |
| [Azure Blob Storage](../../reference/specs/bindings/blobstorage.md) | | ✅ | Experimental |
| [Azure EventHubs](../../reference/specs/bindings/eventhubs.md) | ✅ | ✅ | Experimental |
| [Azure CosmosDB](../../reference/specs/bindings/cosmosdb.md) | | ✅ | Experimental |
| [Azure Service Bus Queues](../../reference/specs/bindings/servicebusqueues.md) | ✅ | ✅ | Experimental |
| [Azure SignalR](../../reference/specs/bindings/signalr.md) | | ✅ | Experimental |
| [Azure Storage Queues](../../reference/specs/bindings/storagequeues.md) | ✅ | ✅ | Experimental |
## Input bindings

View File

@ -1,11 +1,11 @@
# Dapr references
- **[Dapr CLI](https://github.com/dapr/cli)**: The Dapr CLI allows you to setup Dapr on your local dev machine or on a Kubernetes cluster, provides debugging support, launches and manages Dapr instances.
- **Dapr APIs**: Dapr provides a variety of APIs to allow developers to access building block capabilities:
- [Actors](../concepts/actors/actors_api.md)
- [Bindings](../concepts/bindings/bindings_api.md)
- [Publish/Subscribe Messaging](../concepts/publish-subscribe-messaging/pubsub_api.md)
- [Secrets](../concepts/secrets/secrets_api.md)
- [Service Invocation](../concepts/service-invocation/service_invocation_api.md)
- [State Management](../concepts/state-management/state_api.md)
- **[Dapr Binding Specs](../concepts/bindings)**: Bindings provide triggers and interactions with external resources and services
- **[Dapr APIs](./api)**: Dapr provides a variety of APIs to allow developers to access building block capabilities:
- [Actors](./api/actors_api.md)
- [Bindings](./api/bindings_api.md)
- [Publish/Subscribe Messaging](./api/pubsub_api.md)
- [Secrets](./api/secrets_api.md)
- [Service Invocation](./api/service_invocation_api.md)
- [State Management](./api/state_api.md)
- **[Dapr Binding Specs](./specs/bindings)**: Bindings provide triggers and interactions with external resources and services

View File

@ -0,0 +1,10 @@
# Binding component specs
The files within this directory contain the detailed information for each binding component, including the applicable fields, structure, and explanation.
## Quick links
- [Concept: Bindings](../../../concepts/bindings/README.md)
- [Implementing a new binding](https://github.com/dapr/components-contrib/blob/master/bindings/Readme.md#implementing-a-new-binding)
- [How-to: Trigger app with input binding](../../../howto/trigger-app-with-input-binding/README.md)
- [How-to: Send events with output bindings](../../../howto/send-events-with-output-bindings/README.md)