Skip to content

Commit

Permalink
Add com.snowplowanalytics.dataflowrunner/PlaybookConfig/avro/1-0-1 (c…
Browse files Browse the repository at this point in the history
…loses #579)
  • Loading branch information
BenFradet authored and alexanderdean committed May 30, 2017
1 parent dfdf25e commit 95f12bf
Showing 1 changed file with 83 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
{
"namespace": "com.snowplowanalytics.dataflowrunner",
"name": "PlaybookConfig",
"type": "record",
"fields": [
{
"name": "region",
"type": "string"
},
{
"name": "credentials",
"type": {
"name": "CredentialsRecord",
"type": "record",
"fields": [
{
"name": "accessKeyId",
"type": "string"
},
{
"name": "secretAccessKey",
"type": "string"
}
]
}
},
{
"name": "steps",
"type": {
"type": "array",
"items": {
"name": "StepsRecord",
"type": "record",
"fields": [
{
"name": "name",
"type": "string"
},
{
"name": "type",
"type": "string"
},
{
"name": "actionOnFailure",
"type": "string"
},
{
"name": "jar",
"type": "string"
},
{
"name": "arguments",
"type": {
"type": "array",
"items": "string"
}
}
]
}
}
},
{
"name": "tags",
"type": [{
"type": "array",
"items": {
"name": "TagsRecord",
"type": "record",
"fields": [
{
"name": "key",
"type": "string"
},
{
"name": "value",
"type": "string"
}
]
}
}, "null"]
}
]
}

0 comments on commit 95f12bf

Please sign in to comment.