类:Mongo::Crypt::KMS::MasterKeyDocument Private
- 继承:
-
对象
- 对象
- Mongo::Crypt::KMS::MasterKeyDocument
- 定义于:
- 构建/ruby-driver-v2.19/lib/ mongo /crypt/ KMS /master_key_document.rb
Overview
此类是私有 API 的一部分。 应尽可能避免使用此类,因为它将来可能会被删除或更改。
KMS 主密钥文档对象包含用于创建数据密钥的 KMS 主密钥参数。
常量摘要折叠
- KMS_PROVIDERS =
此常量是私有 API 的一部分。 应尽可能避免使用此常量,因为它将来可能会被删除或更改。
已知的 KMS 提供商名称。
%w(AWS AZURE GCP KMIP local).冻结
实例方法摘要折叠
-
#initialize (kms_provider, options) ⇒ MasterKeyDocument
构造函数
private
从参数哈希创建主密钥文档对象。
-
# to_document ⇒ BSON::Document
private
将主密钥文档对象转换为 libmongocrypt 格式的 BSON 文档。
构造函数详情
#initialize (kms_provider, options) ⇒ MasterKeyDocument
此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。
从参数哈希创建主密钥文档对象。
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'build/Ruby-driver-v2.19/lib/ mongo /crypt/ KMS /master_key_document.rb', 第40行 def 初始化(kms_provider, ) if .nil? 提高 ArgumentError.new('关键文档选项不得为 nil ') end master_key = .获取(:master_key, {}) @key_document = 案例 kms_provider.to_s when 'aws' then KMS::AWS::MasterKeyDocument.new(master_key) when 'azure' then KMS::AZURE::MasterKeyDocument.new(master_key) when 'gcp' then KMS::GCP::MasterKeyDocument.new(master_key) when ' kmip ' then KMS::KMIP::MasterKeyDocument.new(master_key) when ' local ' then KMS::local::MasterKeyDocument.new(master_key) else 提高 ArgumentError.new(" KMS提供商必须是#{ KMS_PROVIDERS }之一") end end |
实例方法详细信息
# to_document ⇒ BSON::Document
此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。
将主密钥文档对象转换为 libmongocrypt 格式的 BSON 文档。
59 60 61 |
# File 'build/Ruby-driver-v2.19/lib/ mongo /crypt/ KMS /master_key_document.rb', 第59行 def to_document @key_document.to_document end |