confluent local services schema-registry acl

重要

confluent local コマンドは、単一ノードの開発環境向けであり、本稼働環境には適していません。生成されるデータは一時的であり、暫定的なものです。本稼働環境用のワークフローについては、「Confluent Platform」を参照してください。

説明

Schema Registry の ACL を指定します。

confluent local services schema-registry acl [flags]

ちなみに

各ターミナルのセッションでパスを環境変数としてエクスポートするか、シェルのプロファイルで Confluent Platform のインストール先へのパスを設定する必要があります。以下に例を示します。

cat ~/.bash_profile
export CONFLUENT_HOME=<path-to-confluent>
export PATH="${CONFLUENT_HOME}/bin:$PATH"

フラグ

    --add                Indicates you are trying to add ACLs.
    --list               List all the current ACLs.
    --remove             Indicates you are trying to remove ACLs.
-o, --operation string   Operation that is being authorized. Valid operation names are SUBJECT_READ, SUBJECT_WRITE, SUBJECT_DELETE, SUBJECT_COMPATIBILITY_READ, SUBJECT_COMPATIBILITY_WRITE, GLOBAL_COMPATIBILITY_READ, GLOBAL_COMPATIBILITY_WRITE, and GLOBAL_SUBJECTS_READ.
-p, --principal string   Principal to which the ACL is being applied to. Use * to apply to all principals.
-s, --subject string     Subject to which the ACL is being applied to. Only applicable for SUBJECT operations. Use * to apply to all subjects.
-t, --topic string       Topic to which the ACL is being applied to. The corresponding subjects would be topic-key and topic-value. Only applicable for SUBJECT operations. Use * to apply to all subjects.

グローバルフラグ

-h, --help            Show help for this command.
-v, --verbose count   Increase verbosity (-v for warn, -vv for info, -vvv for debug, -vvvv for trace).

関連情報