Class: Mongo::Crypt::KMS::AWS::MasterKeyDocument Private

Inherits:
Object
  • Object
show all
Includes:
Validations
Defined in:
lib/mongo/crypt/kms/aws/master_document.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

AWS KMS master key document object contains KMS master key parameters.

API:

  • private

Constant Summary collapse

FORMAT_HINT =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

API:

  • private

"AWS key document  must be in the format: " +
"{ region: 'REGION', key: 'KEY' }"

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Validations

#validate_param, validate_tls_options

Constructor Details

#initialize(opts) ⇒ MasterKeyDocument

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Creates a master key document object form a parameters hash.

Parameters:

  • A hash that contains master key options for the AWS KMS provider.

Options Hash (opts):

  • :region (String)

    AWS region.

  • :key (String)

    AWS KMS key.

  • :endpoint (String | nil)

    AWS KMS endpoint, optional.

Raises:

  • If required options are missing or incorrectly.

API:

  • private



49
50
51
52
53
54
55
56
57
58
# File 'lib/mongo/crypt/kms/aws/master_document.rb', line 49

def initialize(opts)
  unless opts.is_a?(Hash)
    raise ArgumentError.new(
      'Key document options must contain a key named :master_key with a Hash value'
    )
  end
  @region = validate_param(:region, opts, FORMAT_HINT)
  @key = validate_param(:key, opts, FORMAT_HINT)
  @endpoint = validate_param(:endpoint, opts, FORMAT_HINT, required: false)
end

Instance Attribute Details

#endpointString | nil (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns AWS KMS endpoint.

Returns:

  • AWS KMS endpoint.

API:

  • private



35
36
37
# File 'lib/mongo/crypt/kms/aws/master_document.rb', line 35

def endpoint
  @endpoint
end

#keyString (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns AWS KMS key.

Returns:

  • AWS KMS key.

API:

  • private



32
33
34
# File 'lib/mongo/crypt/kms/aws/master_document.rb', line 32

def key
  @key
end

#regionString (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns AWS region.

Returns:

  • AWS region.

API:

  • private



29
30
31
# File 'lib/mongo/crypt/kms/aws/master_document.rb', line 29

def region
  @region
end

Instance Method Details

#to_documentBSON::Document

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Convert master key document object to a BSON document in libmongocrypt format.

Returns:

  • AWS KMS master key document in libmongocrypt format.

API:

  • private



63
64
65
66
67
68
69
70
71
72
73
# File 'lib/mongo/crypt/kms/aws/master_document.rb', line 63

def to_document
  BSON::Document.new({
    provider: 'aws',
    region: region,
    key: key,
  }).tap do |bson|
    unless endpoint.nil?
      bson.update({ endpoint: endpoint })
    end
  end
end