@@ -265,12 +265,15 @@ def discover_domain_parameters(self):
265
265
discoverer .add_to_model_if_not_empty (self ._dictionary , model_folder_name , folder_result )
266
266
model_folder_name , folder_result = self ._get_domain_log ()
267
267
discoverer .add_to_model_if_not_empty (self ._dictionary , model_folder_name , folder_result )
268
+ model_folder_name , folder_result = self ._get_nm_properties ()
269
+ discoverer .add_to_model_if_not_empty (self ._dictionary , model_folder_name , folder_result )
270
+
268
271
_logger .exiting (class_name = _class_name , method_name = _method_name )
269
272
270
273
def discover_security_configuration (self ):
271
274
"""
272
275
Discover the security configuration for the domain.
273
- :return: name for the model:dictionary continaing the discovered security configuration
276
+ :return: name for the model:dictionary containing the discovered security configuration
274
277
"""
275
278
_method_name = 'discover_security_configuration'
276
279
_logger .entering (class_name = _class_name , method_name = _method_name )
@@ -344,6 +347,23 @@ def _get_domain_log(self):
344
347
345
348
return model_top_folder_name , result
346
349
350
+ def _get_nm_properties (self ):
351
+ """
352
+ Discover the NMProperties attributes.
353
+ :return: model name for the Log:dictionary containing the discovered NMProperties attributes
354
+ """
355
+ _method_name = '_get_nm_properties'
356
+ _logger .entering (class_name = _class_name , method_name = _method_name )
357
+ model_top_folder_name = model_constants .NM_PROPERTIES
358
+ result = OrderedDict ()
359
+ location = LocationContext (self ._base_location )
360
+ if self ._subfolder_exists (model_top_folder_name , location ):
361
+ _logger .info ('WLSDPLY-06627' , class_name = _class_name , method_name = _method_name )
362
+ location .append_location (model_top_folder_name )
363
+ self ._populate_model_parameters (result , location )
364
+ _logger .exiting (class_name = _class_name , method_name = _method_name )
365
+ return model_top_folder_name , result
366
+
347
367
def _get_restful_management_services (self ):
348
368
"""
349
369
Discover the wlst restful management services enablement for the domain.
0 commit comments