2016-10-21 23:13:41 +00:00
|
|
|
import { PropTypes } from 'react';
|
|
|
|
|
|
|
|
|
|
export default PropTypes.shape({
|
2016-12-23 18:40:16 +00:00
|
|
|
authentication_method: PropTypes.string,
|
|
|
|
|
authentication_type: PropTypes.string,
|
|
|
|
|
configured: PropTypes.bool,
|
|
|
|
|
domain: PropTypes.string,
|
|
|
|
|
enable_ssl_tls: PropTypes.bool,
|
|
|
|
|
enable_start_tls: PropTypes.bool,
|
|
|
|
|
kolide_server_url: PropTypes.string,
|
2016-10-21 23:13:41 +00:00
|
|
|
org_logo_url: PropTypes.string,
|
|
|
|
|
org_name: PropTypes.string,
|
2016-12-23 18:40:16 +00:00
|
|
|
password: PropTypes.string,
|
|
|
|
|
port: PropTypes.number,
|
|
|
|
|
sender_address: PropTypes.string,
|
|
|
|
|
server: PropTypes.string,
|
|
|
|
|
user_name: PropTypes.string,
|
|
|
|
|
verify_sll_certs: PropTypes.bool,
|
2016-10-21 23:13:41 +00:00
|
|
|
});
|