@@ -43,7 +43,7 @@ def _handle_dmp_capabilities_request(
4343 conn_provider_opts = ConnectionProviderOptions ([
4444 ConnectionOption (
4545 name = 'host' ,
46- display_name = 'Server Name ' ,
46+ display_name = 'Server name ' ,
4747 description = 'Name of the PostgreSQL instance' ,
4848 value_type = ConnectionOption .VALUE_TYPE_STRING ,
4949 special_value_type = ConnectionOption .SPECIAL_VALUE_SERVER_NAME ,
@@ -53,7 +53,7 @@ def _handle_dmp_capabilities_request(
5353 ),
5454 ConnectionOption (
5555 name = 'dbname' ,
56- display_name = 'Database Name ' ,
56+ display_name = 'Database name ' ,
5757 description = 'The name of the initial catalog or database in the data source' ,
5858 value_type = ConnectionOption .VALUE_TYPE_STRING ,
5959 special_value_type = ConnectionOption .SPECIAL_VALUE_DATABASE_NAME ,
@@ -64,7 +64,7 @@ def _handle_dmp_capabilities_request(
6464 ),
6565 ConnectionOption (
6666 name = 'user' ,
67- display_name = 'User Name ' ,
67+ display_name = 'User name ' ,
6868 description = 'Indicates the user ID to be used when connecting to the data source' ,
6969 value_type = ConnectionOption .VALUE_TYPE_STRING ,
7070 special_value_type = ConnectionOption .SPECIAL_VALUE_USER_NAME ,
@@ -84,7 +84,7 @@ def _handle_dmp_capabilities_request(
8484 ),
8585 ConnectionOption (
8686 name = 'hostaddr' ,
87- display_name = 'Host IP Address ' ,
87+ display_name = 'Host IP address ' ,
8888 description = 'IP address of the server' ,
8989 value_type = ConnectionOption .VALUE_TYPE_STRING ,
9090 group_name = 'Server'
@@ -98,37 +98,37 @@ def _handle_dmp_capabilities_request(
9898 ),
9999 ConnectionOption (
100100 name = 'connectTimeout' ,
101- display_name = 'Connect Timeout ' ,
101+ display_name = 'Connect timeout ' ,
102102 description = 'Seconds to wait before timing out when connecting' ,
103103 value_type = ConnectionOption .VALUE_TYPE_NUMBER ,
104104 group_name = 'Client' ,
105105 default_value = '15'
106106 ),
107107 ConnectionOption (
108108 name = 'clientEncoding' ,
109- display_name = 'Client Encoding ' ,
109+ display_name = 'Client encoding ' ,
110110 description = 'The client encoding for the connection' ,
111111 value_type = ConnectionOption .VALUE_TYPE_STRING ,
112112 group_name = 'Client'
113113 ),
114114 ConnectionOption (
115115 name = 'options' ,
116- display_name = 'Command-Line Options ' ,
116+ display_name = 'Command-line options ' ,
117117 description = 'Command-line options to send to the server when the connection starts' ,
118118 value_type = ConnectionOption .VALUE_TYPE_STRING ,
119119 group_name = 'Server'
120120 ),
121121 ConnectionOption (
122122 name = 'applicationName' ,
123- display_name = 'Application Name ' ,
123+ display_name = 'Application name ' ,
124124 description = 'Value for the "application_name" configuration parameter' ,
125125 value_type = ConnectionOption .VALUE_TYPE_STRING ,
126126 group_name = 'Client' ,
127127 special_value_type = ConnectionOption .SPECIAL_VALUE_APP_NAME
128128 ),
129129 ConnectionOption (
130130 name = 'sslmode' ,
131- display_name = 'SSL Mode ' ,
131+ display_name = 'SSL mode ' ,
132132 description = 'The SSL mode to use when connecting' ,
133133 value_type = ConnectionOption .VALUE_TYPE_CATEGORY ,
134134 group_name = 'SSL' ,
@@ -144,49 +144,49 @@ def _handle_dmp_capabilities_request(
144144 ),
145145 ConnectionOption (
146146 name = 'sslcompression' ,
147- display_name = 'Use SSL Compression ' ,
147+ display_name = 'Use SSL compression ' ,
148148 description = 'Whether to compress SSL connections' ,
149149 value_type = ConnectionOption .VALUE_TYPE_BOOLEAN ,
150150 group_name = 'SSL'
151151 ),
152152 ConnectionOption (
153153 name = 'sslcert' ,
154- display_name = 'SSL Certificate Filename ' ,
154+ display_name = 'SSL certificate filename ' ,
155155 description = 'The filename of the SSL certificate to use' ,
156156 value_type = ConnectionOption .VALUE_TYPE_STRING ,
157157 group_name = 'SSL'
158158 ),
159159 ConnectionOption (
160160 name = 'sslkey' ,
161- display_name = 'SSL Key Filename ' ,
161+ display_name = 'SSL key filename ' ,
162162 description = 'The filename of the key to use for the SSL certificate' ,
163163 value_type = ConnectionOption .VALUE_TYPE_STRING ,
164164 group_name = 'SSL'
165165 ),
166166 ConnectionOption (
167167 name = 'sslrootcert' ,
168- display_name = 'SSL Root Certificate Filename ' ,
168+ display_name = 'SSL root certificate filename ' ,
169169 description = 'The filename of the SSL root CA certificate to use' ,
170170 value_type = ConnectionOption .VALUE_TYPE_STRING ,
171171 group_name = 'SSL'
172172 ),
173173 ConnectionOption (
174174 name = 'sslcrl' ,
175- display_name = 'SSL CRL Filename ' ,
175+ display_name = 'SSL CRL filename ' ,
176176 description = 'The filename of the SSL certificate revocation list to use' ,
177177 value_type = ConnectionOption .VALUE_TYPE_STRING ,
178178 group_name = 'SSL'
179179 ),
180180 ConnectionOption (
181181 name = 'requirepeer' ,
182- display_name = 'Require Peer ' ,
182+ display_name = 'Require peer ' ,
183183 description = 'The required username of the server process' ,
184184 value_type = ConnectionOption .VALUE_TYPE_STRING ,
185185 group_name = 'Server'
186186 ),
187187 ConnectionOption (
188188 name = 'service' ,
189- display_name = 'Service Name ' ,
189+ display_name = 'Service name ' ,
190190 description = 'The service name in pg_service.conf to use for connection parameters' ,
191191 value_type = ConnectionOption .VALUE_TYPE_STRING ,
192192 group_name = 'Client'
0 commit comments