Support for NETCONF Get command to get xapp configuration in O1 client
[ric-plt/o1.git] / agent / pkg / sbi / types.go
index ae522bb..c2f751f 100755 (executable)
@@ -29,7 +29,7 @@ import (
 type SBIClient struct {
        appmgrAddr   string
        alertmgrAddr string
-       timeout          time.Duration
+       timeout      time.Duration
 }
 
 type SBIClientInterface interface {
@@ -44,4 +44,6 @@ type SBIClientInterface interface {
        GetAllPodStatus(namespace string) ([]PodStatus, error)
 
        GetAlerts() (*alert.GetAlertsOK, error)
+
+       GetAllDeployedXappsConfig() ([]string, []string)
 }