Source code for models_v2.key_type_enum
# -*- coding: utf-8 -*-
[docs]class KeyTypeEnum(object):
"""Implementation of the 'KeyType' enum.
Specifies the algorithm to be used to generate the key pair. RSA is the
default value.
Attributes:
RSA: TODO: type description here.
ECDSA: TODO: type description here.
"""
RSA = 'rsa'
ECDSA = 'ecdsa'