@@ -93,7 +93,10 @@ public ResourceModelSource createResourceModelSource(Properties configuration) t
93
93
return null ;
94
94
}
95
95
96
- static Description DESC = DescriptionBuilder .builder ()
96
+ public static final Map <String , Object > PROXY_OPTIONS = Map .of (
97
+ StringRenderingConstants .GROUP_NAME , "Proxy" ,
98
+ StringRenderingConstants .GROUPING , "secondary"
99
+ );
97
100
98
101
public static final Map <String , Object > PASSWORD_OPTIONS = Collections .singletonMap (StringRenderingConstants .DISPLAY_TYPE_KEY , StringRenderingConstants .DisplayType .PASSWORD );
99
102
@@ -173,9 +176,11 @@ public ResourceModelSource createResourceModelSource(Properties configuration) t
173
176
.property (PropertyUtil .string (REGION , "Region" , "AWS EC2 region." ,
174
177
false ,
175
178
null ))
176
- .property (PropertyUtil .string (HTTP_PROXY_HOST , "HTTP Proxy Host" , "HTTP Proxy Host Name, or blank for default" , false , null ))
177
- .property (PropertyUtil .integer (HTTP_PROXY_PORT , "HTTP Proxy Port" , "HTTP Proxy Port, or blank for 80" , false , "80" ))
178
- .property (PropertyUtil .string (HTTP_PROXY_USER , "HTTP Proxy User" , "HTTP Proxy User Name, or blank for default" , false , null ))
179
+ .property (PropertyUtil .string (HTTP_PROXY_HOST , "HTTP Proxy Host" , "HTTP Proxy Host Name, or blank for default" , false , null , null ,null ,
180
+ PROXY_OPTIONS
181
+ ))
182
+ .property (PropertyUtil .integer (HTTP_PROXY_PORT , "HTTP Proxy Port" , "HTTP Proxy Port, or blank for 80" , false , "80" ,null ,null ,PROXY_OPTIONS ))
183
+ .property (PropertyUtil .string (HTTP_PROXY_USER , "HTTP Proxy User" , "HTTP Proxy User Name, or blank for default" , false , null ,null ,null ,PROXY_OPTIONS ))
179
184
.property (
180
185
PropertyUtil .string (
181
186
HTTP_PROXY_PASS ,
@@ -185,7 +190,11 @@ public ResourceModelSource createResourceModelSource(Properties configuration) t
185
190
null ,
186
191
null ,
187
192
null ,
188
- Collections .singletonMap ("displayType" , (Object ) StringRenderingConstants .DisplayType .PASSWORD )
193
+ Map .of (
194
+ StringRenderingConstants .GROUP_NAME , "Proxy" ,
195
+ StringRenderingConstants .GROUPING , "secondary" ,
196
+ StringRenderingConstants .DISPLAY_TYPE_KEY , StringRenderingConstants .DisplayType .PASSWORD
197
+ )
189
198
)
190
199
)
191
200
.property (PropertyUtil .string (MAPPING_PARAMS , "Mapping Params" ,
0 commit comments