svn: /phpdoc/ja/trunk/ language-snippets.ent
[email protected] (Yoshinari Takaoka)
| Newsgroups | php.doc.ja |
|---|---|
| Message-ID | <[email protected]> |
mumumu Wed, 29 Jan 2020 00:24:28 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=349046
Log:
sync with en
Changed paths:
U phpdoc/ja/trunk/language-snippets.ent
Modified: phpdoc/ja/trunk/language-snippets.ent
===================================================================
--- phpdoc/ja/trunk/language-snippets.ent 2020-01-28 22:47:59 UTC (rev 349045)
+++ phpdoc/ja/trunk/language-snippets.ent 2020-01-29 00:24:28 UTC (rev 349046)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 348529 Maintainer: takagi Status: working -->
+<!-- EN-Revision: 349045 Maintainer: takagi Status: working -->
<!-- Credits: hirokawa,haruki,shimooka,mumumu -->
<!ENTITY installation.enabled.disable 'この拡張モジュールはデフォルトで有効になっています。無効にしたい場合は、次のオプションを指定してコンパイルします。'>
@@ -2265,7 +2265,54 @@
</entry>
</row>
'>
-
+<!ENTITY mongodb.option.encryption.keyVaultClient '
+ <row xmlns="http://docbook.org/ns/docbook">
+ <entry>keyVaultClient</entry>
+ <entry><classname>MongoDB\Driver\Manager</classname></entry>
+ <entry>The Manager used to route data key queries to a separate MongoDB cluster. By default, the current Manager and cluster is used.</entry>
+ </row>
+'>
+<!ENTITY mongodb.option.encryption.keyVaultNamespace '
+ <row xmlns="http://docbook.org/ns/docbook">
+ <entry>keyVaultNamespace</entry>
+ <entry><type>string</type></entry>
+ <entry>A fully qualified namespace (e.g. <literal>"databaseName.collectionName"</literal>) denoting the collection that contains all data keys used for encryption and decryption.</entry>
+ </row>
+'>
+<!ENTITY mongodb.option.encryption.kmsProviders '
+ <row xmlns="http://docbook.org/ns/docbook">
+ <entry>kmsProviders</entry>
+ <entry><type>array</type></entry>
+ <entry>
+ <para>
+ A document containing the configuration for one or more KMS providers, which are used to encrypt data keys. Currently <literal>aws</literal> or <literal>local</literal>are supported and at least one must be specified.
+ </para>
+ <para>
+ The format for <literal>aws</literal> is as follows:
+ </para>
+ <programlisting role="javascript">
+<![CDATA[
+aws: {
+ accessKeyId: <string>,
+ secretAccessKey: <string>
+}
+]]>
+ </programlisting>
+ <para>
+ The format for <literal>local</literal> is as follows:
+ </para>
+ <programlisting role="javascript">
+<![CDATA[
+local: {
+ // The master key used to encrypt/decrypt data keys
+ key: <96-byte MongoDB\BSON\Binary with subtype 0>
+}
+]]>
+ </programlisting>
+ </entry>
+ </row>
+'>
+<!-- to be translated -->
<!ENTITY mongodb.option.maxCommitTimeMS '
<row xmlns="http://docbook.org/ns/docbook">
<entry>maxCommitTimeMS</entry>