Class: Fog::Parsers::AWS::KMS::GetPublicKey
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::KMS::GetPublicKey
- Defined in:
- lib/fog/aws/parsers/kms/get_public_key.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/fog/aws/parsers/kms/get_public_key.rb', line 18 def end_element(name) case name when 'KeyId', 'KeySpec', 'KeyUsage', 'PublicKey' @response[name] = value when 'EncryptionAlgorithms', 'KeyAgreementAlgorithms', 'SigningAlgorithms' @response[name] << value end end |
#reset ⇒ Object
6 7 8 |
# File 'lib/fog/aws/parsers/kms/get_public_key.rb', line 6 def reset @response = {} end |
#start_element(name, attrs = []) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/fog/aws/parsers/kms/get_public_key.rb', line 10 def start_element(name, attrs = []) super case name when 'EncryptionAlgorithms', 'KeyAgreementAlgorithms', 'SigningAlgorithms' @response[name] = [] end end |