Skip to content

Commit

Permalink
Added display values to Kafka binding enums.
Browse files Browse the repository at this point in the history
  • Loading branch information
kashimiz committed Mar 2, 2021
1 parent bd1310c commit 5fe6dae
Showing 1 changed file with 80 additions and 20 deletions.
100 changes: 80 additions & 20 deletions Functions.Templates/Bindings/bindings.json
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,26 @@
"required": true,
"defaultValue":"SASLSSL",
"enum": [
"NOTSET",
"PLAINTEXT",
"SSL",
"SASLPLAINTEXT",
"SASLSSL"
{
"value": "NOTSET",
"display": "Not Set"
},
{
"value": "PLAINTEXT",
"display": "Plaintext"
},
{
"value": "SSL",
"display": "SSL"
},
{
"value": "SASLPLAINTEXT",
"display": "SASL Plaintext"
},
{
"value": "SASLSSL",
"display": "SASL SSL"
}
],
"label": "$kafka_protocol_label",
"help": "$kafka_protocol_help"
Expand All @@ -236,11 +251,26 @@
"defaultValue": "PLAIN",
"required": false,
"enum": [
"NOTSET",
"GSSAPI",
"PLAIN",
"SCRAMSHA256",
"SCRAMSHA512"
{
"value": "NOTSET",
"display": "Not Set"
},
{
"value": "GSSAPI",
"display": "GSS API"
},
{
"value": "PLAIN",
"display": "Plain"
},
{
"value": "SCRAMSHA256",
"display": "SCRAM SHA-256"
},
{
"value": "SCRAMSHA512",
"display": "SCRAM SHA-512"
}
],
"label": "$kafka_authenticationmode_label",
"help": "$kafka_authenticationmode_help"
Expand Down Expand Up @@ -319,11 +349,26 @@
"required": true,
"defaultValue":"SASLSSL",
"enum": [
"NOTSET",
"PLAINTEXT",
"SSL",
"SASLPLAINTEXT",
"SASLSSL"
{
"value": "NOTSET",
"display": "Not Set"
},
{
"value": "PLAINTEXT",
"display": "Plaintext"
},
{
"value": "SSL",
"display": "SSL"
},
{
"value": "SASLPLAINTEXT",
"display": "SASL Plaintext"
},
{
"value": "SASLSSL",
"display": "SASL SSL"
}
],
"label": "$kafka_protocol_label",
"help": "$kafka_protocol_help"
Expand All @@ -334,11 +379,26 @@
"defaultValue": "PLAIN",
"required": false,
"enum": [
"NOTSET",
"GSSAPI",
"PLAIN",
"SCRAMSHA256",
"SCRAMSHA512"
{
"value": "NOTSET",
"display": "Not Set"
},
{
"value": "GSSAPI",
"display": "GSS API"
},
{
"value": "PLAIN",
"display": "Plain"
},
{
"value": "SCRAMSHA256",
"display": "SCRAM SHA-256"
},
{
"value": "SCRAMSHA512",
"display": "SCRAM SHA-512"
}
],
"label": "$kafka_authenticationmode_label",
"help": "$kafka_authenticationmode_help"
Expand Down

0 comments on commit 5fe6dae

Please sign in to comment.