You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ma...@apache.org on 2018/12/04 04:11:22 UTC

[kafka] branch trunk updated: MINOR: Update command line options in Authorization and ACLs documentation chapter (#5995)

This is an automated email from the ASF dual-hosted git repository.

manikumar pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new b4030a0  MINOR: Update command line options in Authorization and ACLs documentation chapter (#5995)
b4030a0 is described below

commit b4030a0375a46f71000d11147192db83a7f3bb25
Author: Jakub Scholz <ww...@scholzj.com>
AuthorDate: Tue Dec 4 05:11:08 2018 +0100

    MINOR: Update command line options in Authorization and ACLs documentation chapter (#5995)
---
 docs/security.html | 36 +++++++++++++++++++++++++++++++++++-
 1 file changed, 35 insertions(+), 1 deletion(-)

diff --git a/docs/security.html b/docs/security.html
index 28c506c..599a47a 100644
--- a/docs/security.html
+++ b/docs/security.html
@@ -1135,6 +1135,18 @@
             <td>ResourcePattern</td>
         </tr>
         <tr>
+            <td>--transactional-id [transactional-id]</td>
+            <td>The transactionalId to which ACLs should be added or removed. A value of * indicates the ACLs should apply to all transactionalIds.</td>
+            <td></td>
+            <td>ResourcePattern</td>
+        </tr>
+        <tr>
+            <td>--delegation-token [delegation-token]</td>
+            <td>Delegation token to which ACLs should be added or removed. A value of * indicates ACL should apply to all tokens.</td>
+            <td></td>
+            <td>ResourcePattern</td>
+        </tr>
+        <tr>
             <td>--resource-pattern-type [pattern-type]</td>
             <td>Indicates to the script the type of resource pattern, (for --add), or resource pattern filter, (for --list and --remove), the user wishes to use.<br>
                 When adding acls, this should be a specific pattern type, e.g. 'literal' or 'prefixed'.<br>
@@ -1179,7 +1191,21 @@
         <tr>
             <td>--operation</td>
             <td>Operation that will be allowed or denied.<br>
-                Valid values are : Read, Write, Create, Delete, Alter, Describe, ClusterAction, All</td>
+                Valid values are:
+                <ul>
+                    <li>Read</li>
+                    <li>Write</li>
+                    <li>Create</li>
+                    <li>Delete</li>
+                    <li>Alter</li>
+                    <li>Describe</li>
+                    <li>ClusterAction</li>
+                    <li>DescribeConfigs</li>
+                    <li>AlterConfigs</li>
+                    <li>IdempotentWrite</li>
+                    <li>All</li>
+                </ul>
+            </td>
             <td>All</td>
             <td>Operation</td>
         </tr>
@@ -1198,6 +1224,14 @@
             <td>Convenience</td>
         </tr>
         <tr>
+            <td>--idempotent</td>
+            <td>Enable idempotence for the producer. This should be used in combination with the --producer option.<br>
+                Note that idempotence is enabled automatically if the producer is authorized to a particular transactional-id.
+            </td>
+            <td></td>
+            <td>Convenience</td>
+        </tr>
+        <tr>
             <td>--force</td>
             <td> Convenience option to assume yes to all queries and do not prompt.</td>
             <td></td>