Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add some component metadata files #3634

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions bindings/aws/dynamodb/metadata.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
schemaVersion: v1
type: bindings
name: aws.dynamodb
version: v1
status: stable
title: AWS DynamoDB
urls:
- title: Reference
url: https://docs.dapr.io/reference/components-reference/supported-bindings/dynamodb/
binding:
output: true
operations:
- name: create
description: Create a table
capabilities:
- actorStateStore
- crud
- transaction
- etag
- ttl
builtinAuthenticationProfiles:
- name: aws
metadata:
- name: table
description: "The DynamoDB table name"
required: true
type: string
example: Contracts
binding:
output: true
61 changes: 61 additions & 0 deletions bindings/aws/kinesis/metadata.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
schemaVersion: v1
type: bindings
name: aws.kinesis
version: v1
status: alpha
title: AWS Kinesis Data Streams
urls:
- title: Reference
url: https://docs.dapr.io/reference/components-reference/supported-bindings/kinesis/
binding:
input: true
output: true
operations:
- name: create
description: Create a stream
builtinAuthenticationProfiles:
- name: aws
metadata:
- name: streamName
description: Kinesis stream name.
required: true
type: string
example: mystream
binding:
input: true
output: true
- name: consumerName
description: Kinesis consumer name
required: true
type: string
example: myconsumer
binding:
input: true
- name: mode
description: Kinesis stream mode. Options include "shared" for shared throughput, "extended" for extended/enhanced fanout methods.
type: string
default: shared
example: extended
allowedValues:
- "shared"
- "extended"
binding:
input: true
- name: direction
description: Indicates the direction of the binding component.
type: string
example: '"input,output"'
allowedValues:
- input
- output
- input,output
url:
title: Documentation
url: https://docs.dapr.io/reference/api/bindings_api/#binding-direction-optional
- name: route
description: Specifies a custom route for incoming events.
type: string
example: '"/custom-path"'
url:
title: Documentation
url: https://docs.dapr.io/developing-applications/building-blocks/bindings/howto-triggers/#specify-a-custom-route
Loading