Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
hvac / constants / client.py
Size: Mime:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Constants related to the hvac.Client class."""

DEPRECATED_PROPERTIES = {
    'github': dict(
        to_be_removed_in_version='0.9.0',
        client_property='auth',
    ),
    'ldap': dict(
        to_be_removed_in_version='0.9.0',
        client_property='auth',
    ),
    'mfa': dict(
        to_be_removed_in_version='0.9.0',
        client_property='auth',
    ),
    'kv': dict(
        to_be_removed_in_version='0.9.0',
        client_property='secrets',
    ),
}

DEFAULT_URL = 'http://localhost:8200'