@@ -183,19 +183,21 @@ type EndpointGroup struct {
183
183
// every object has a key
184
184
Key string `json:"key,omitempty"`
185
185
186
- GroupName string `json:"groupName,omitempty"` // Group name
187
- NetworkName string `json:"networkName,omitempty"` // Network
188
- Policies []string `json:"policies,omitempty"`
189
- TenantName string `json:"tenantName,omitempty"` // Tenant
186
+ ExtContractsGrps []string `json:"extContractsGrps,omitempty"`
187
+ GroupName string `json:"groupName,omitempty"` // Group name
188
+ NetworkName string `json:"networkName,omitempty"` // Network
189
+ Policies []string `json:"policies,omitempty"`
190
+ TenantName string `json:"tenantName,omitempty"` // Tenant
190
191
191
192
// add link-sets and links
192
193
LinkSets EndpointGroupLinkSets `json:"link-sets,omitempty"`
193
194
Links EndpointGroupLinks `json:"links,omitempty"`
194
195
}
195
196
196
197
type EndpointGroupLinkSets struct {
197
- Policies map [string ]Link `json:"Policies,omitempty"`
198
- Services map [string ]Link `json:"Services,omitempty"`
198
+ ExtContractsGrps map [string ]Link `json:"ExtContractsGrps,omitempty"`
199
+ Policies map [string ]Link `json:"Policies,omitempty"`
200
+ Services map [string ]Link `json:"Services,omitempty"`
199
201
}
200
202
201
203
type EndpointGroupLinks struct {
@@ -204,6 +206,23 @@ type EndpointGroupLinks struct {
204
206
Tenant Link `json:"Tenant,omitempty"`
205
207
}
206
208
209
+ type ExtContractsGroup struct {
210
+ // every object has a key
211
+ Key string `json:"key,omitempty"`
212
+
213
+ Contracts []string `json:"contracts,omitempty"`
214
+ ContractsGroupName string `json:"contractsGroupName,omitempty"` // Contracts group name
215
+ ContractsType string `json:"contractsType,omitempty"` // Contracts type
216
+ TenantName string `json:"tenantName,omitempty"` // Tenant name
217
+
218
+ // add link-sets and links
219
+ LinkSets ExtContractsGroupLinkSets `json:"link-sets,omitempty"`
220
+ }
221
+
222
+ type ExtContractsGroupLinkSets struct {
223
+ EndpointGroups map [string ]Link `json:"EndpointGroups,omitempty"`
224
+ }
225
+
207
226
type Global struct {
208
227
// every object has a key
209
228
Key string `json:"key,omitempty"`
@@ -575,6 +594,71 @@ func (c *ContivClient) EndpointGroupDelete(tenantName string, groupName string)
575
594
return nil
576
595
}
577
596
597
+ // ExtContractsGroupPost posts the extContractsGroup object
598
+ func (c * ContivClient ) ExtContractsGroupPost (obj * ExtContractsGroup ) error {
599
+ // build key and URL
600
+ keyStr := obj .TenantName + ":" + obj .ContractsGroupName
601
+ url := c .baseURL + "/api/extContractsGroups/" + keyStr + "/"
602
+
603
+ // http post the object
604
+ err := httpPost (url , obj )
605
+ if err != nil {
606
+ log .Debugf ("Error creating extContractsGroup %+v. Err: %v" , obj , err )
607
+ return err
608
+ }
609
+
610
+ return nil
611
+ }
612
+
613
+ // ExtContractsGroupList lists all extContractsGroup objects
614
+ func (c * ContivClient ) ExtContractsGroupList () (* []* ExtContractsGroup , error ) {
615
+ // build key and URL
616
+ url := c .baseURL + "/api/extContractsGroups/"
617
+
618
+ // http get the object
619
+ var objList []* ExtContractsGroup
620
+ err := httpGet (url , & objList )
621
+ if err != nil {
622
+ log .Debugf ("Error getting extContractsGroups. Err: %v" , err )
623
+ return nil , err
624
+ }
625
+
626
+ return & objList , nil
627
+ }
628
+
629
+ // ExtContractsGroupGet gets the extContractsGroup object
630
+ func (c * ContivClient ) ExtContractsGroupGet (tenantName string , contractsGroupName string ) (* ExtContractsGroup , error ) {
631
+ // build key and URL
632
+ keyStr := tenantName + ":" + contractsGroupName
633
+ url := c .baseURL + "/api/extContractsGroups/" + keyStr + "/"
634
+
635
+ // http get the object
636
+ var obj ExtContractsGroup
637
+ err := httpGet (url , & obj )
638
+ if err != nil {
639
+ log .Debugf ("Error getting extContractsGroup %+v. Err: %v" , keyStr , err )
640
+ return nil , err
641
+ }
642
+
643
+ return & obj , nil
644
+ }
645
+
646
+ // ExtContractsGroupDelete deletes the extContractsGroup object
647
+ func (c * ContivClient ) ExtContractsGroupDelete (tenantName string , contractsGroupName string ) error {
648
+ // build key and URL
649
+ keyStr := tenantName + ":" + contractsGroupName
650
+ url := c .baseURL + "/api/extContractsGroups/" + keyStr + "/"
651
+
652
+ // http get the object
653
+ err := httpDelete (url )
654
+ if err != nil {
655
+ log .Debugf ("Error deleting extContractsGroup %s. Err: %v" , keyStr , err )
656
+ return err
657
+ }
658
+
659
+ return nil
660
+ }
661
+
578
662
// GlobalPost posts the global object
579
663
func (c * ContivClient ) GlobalPost (obj * Global ) error {
580
664
// build key and URL
0 commit comments