@@ -124,7 +124,7 @@ type EndpointGroupLinks struct {
124
124
type EndpointGroupOper struct {
125
125
Endpoints []EndpointOper `json:"endpoints,omitempty"`
126
126
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
127
- NumEndpoints int `json:"numEndpoints,omitempty"` // external packet tag
127
+ NumEndpoints int `json:"numEndpoints,omitempty"` // number of endpoints
128
128
PktTag int `json:"pktTag,omitempty"` // internal packet tag
129
129
130
130
}
@@ -278,8 +278,17 @@ type PolicyLinks struct {
278
278
Tenant modeldb.Link `json:"Tenant,omitempty"`
279
279
}
280
280
281
+ type PolicyOper struct {
282
+ Endpoints []EndpointOper `json:"endpoints,omitempty"`
283
+ NumEndpoints int `json:"numEndpoints,omitempty"` // number of endpoints
284
+ PolicyViolations int `json:"policyViolations,omitempty"` // number of policyViolations
285
+
286
+ }
287
+
281
288
type PolicyInspect struct {
282
289
Config Policy
290
+
291
+ Oper PolicyOper
283
292
}
284
293
285
294
type Rule struct {
@@ -372,8 +381,26 @@ type TenantLinkSets struct {
372
381
Volumes map [string ]modeldb.Link `json:"Volumes,omitempty"`
373
382
}
374
383
384
+ type TenantOper struct {
385
+ EndpointGroups []EndpointGroupOper `json:"endpointGroups,omitempty"`
386
+ Endpoints []EndpointOper `json:"endpoints,omitempty"`
387
+ Networks []NetworkOper `json:"networks,omitempty"`
388
+ Policies []PolicyOper `json:"policies,omitempty"`
389
+ Servicelbs []ServiceLBOper `json:"servicelbs,omitempty"`
390
+ TotalAppProfiles int `json:"totalAppProfiles,omitempty"` // total number of App-Profiles
391
+ TotalEPGs int `json:"totalEPGs,omitempty"` // total number of EPGs
392
+ TotalEndpoints int `json:"totalEndpoints,omitempty"` // total number of endpoints in the tenant
393
+ TotalNetprofiles int `json:"totalNetprofiles,omitempty"` // total number of Netprofiles
394
+ TotalNetworks int `json:"totalNetworks,omitempty"` // total number of networks
395
+ TotalPolicies int `json:"totalPolicies,omitempty"` // total number of totalPolicies
396
+ TotalServicelbs int `json:"totalServicelbs,omitempty"` // total number of Servicelbs
397
+
398
+ }
399
+
375
400
type TenantInspect struct {
376
401
Config Tenant
402
+
403
+ Oper TenantOper
377
404
}
378
405
379
406
type Volume struct {
@@ -505,6 +532,8 @@ type NetworkCallbacks interface {
505
532
}
506
533
507
534
type PolicyCallbacks interface {
535
+ PolicyGetOper (policy * PolicyInspect ) error
536
+
508
537
PolicyCreate (policy * Policy ) error
509
538
PolicyUpdate (policy , params * Policy ) error
510
539
PolicyDelete (policy * Policy ) error
@@ -525,6 +554,8 @@ type ServiceLBCallbacks interface {
525
554
}
526
555
527
556
type TenantCallbacks interface {
557
+ TenantGetOper (tenant * TenantInspect ) error
558
+
528
559
TenantCreate (tenant * Tenant ) error
529
560
TenantUpdate (tenant , params * Tenant ) error
530
561
TenantDelete (tenant * Tenant ) error
@@ -3022,10 +3053,33 @@ func httpInspectPolicy(w http.ResponseWriter, r *http.Request, vars map[string]s
3022
3053
}
3023
3054
obj .Config = * objConfig
3024
3055
3056
+ if err := GetOperPolicy (& obj ); err != nil {
3057
+ log .Errorf ("GetPolicy error for: %+v. Err: %v" , obj , err )
3058
+ return nil , err
3059
+ }
3060
+
3025
3061
// Return the obj
3026
3062
return & obj , nil
3027
3063
}
3028
3064
3065
+ // Get a policyOper object
3066
+ func GetOperPolicy (obj * PolicyInspect ) error {
3067
+ // Check if we handle this object
3068
+ if objCallbackHandler .PolicyCb == nil {
3069
+ log .Errorf ("No callback registered for policy object" )
3070
+ return errors .New ("Invalid object type" )
3071
+ }
3072
+
3073
+ // Perform callback
3074
+ err := objCallbackHandler .PolicyCb .PolicyGetOper (obj )
3075
+ if err != nil {
3076
+ log .Errorf ("PolicyDelete retruned error for: %+v. Err: %v" , obj , err )
3077
+ return err
3078
+ }
3079
+
3080
+ return nil
3081
+ }
3082
+
3029
3083
// LIST REST call
3030
3084
func httpListPolicys (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
3031
3085
log .Debugf ("Received httpListPolicys: %+v" , vars )
@@ -3974,10 +4028,33 @@ func httpInspectTenant(w http.ResponseWriter, r *http.Request, vars map[string]s
3974
4028
}
3975
4029
obj .Config = * objConfig
3976
4030
4031
+ if err := GetOperTenant (& obj ); err != nil {
4032
+ log .Errorf ("GetTenant error for: %+v. Err: %v" , obj , err )
4033
+ return nil , err
4034
+ }
4035
+
3977
4036
// Return the obj
3978
4037
return & obj , nil
3979
4038
}
3980
4039
4040
+ // Get a tenantOper object
4041
+ func GetOperTenant (obj * TenantInspect ) error {
4042
+ // Check if we handle this object
4043
+ if objCallbackHandler .TenantCb == nil {
4044
+ log .Errorf ("No callback registered for tenant object" )
4045
+ return errors .New ("Invalid object type" )
4046
+ }
4047
+
4048
+ // Perform callback
4049
+ err := objCallbackHandler .TenantCb .TenantGetOper (obj )
4050
+ if err != nil {
4051
+ log .Errorf ("TenantDelete retruned error for: %+v. Err: %v" , obj , err )
4052
+ return err
4053
+ }
4054
+
4055
+ return nil
4056
+ }
4057
+
3981
4058
// LIST REST call
3982
4059
func httpListTenants (w http.ResponseWriter , r * http.Request , vars map [string ]string ) (interface {}, error ) {
3983
4060
log .Debugf ("Received httpListTenants: %+v" , vars )
0 commit comments