Skip to content

Commit

Permalink
Update tf-metadata.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Aug 19, 2018
1 parent 6c9fafa commit 9dc7b85
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/tf-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -50024,6 +50024,45 @@
"summary": "output = input; While (Cond(output)) { output = Body(output) }"
}
},
{
"name": "StaticRegexReplace",
"schema": {
"attributes": [
{
"description": "The regular expression to match the input.",
"name": "pattern",
"type": "string"
},
{
"description": "The rewrite to be applied to the matched expresion.",
"name": "rewrite",
"type": "string"
},
{
"default": true,
"description": "If True, the replacement is global, otherwise the replacement\nis done only on the first match.",
"name": "replace_global",
"type": "bool"
}
],
"description": "It follows the re2 syntax (https://github.com/google/re2/wiki/Syntax)",
"inputs": [
{
"description": "The text to be processed.",
"name": "input",
"type": 7
}
],
"outputs": [
{
"description": "The text after applying pattern and rewrite.",
"name": "output",
"type": 7
}
],
"summary": "Replaces the match of pattern in input with rewrite."
}
},
{
"name": "StatsAggregatorHandle",
"schema": {
Expand Down

0 comments on commit 9dc7b85

Please sign in to comment.