File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ [ ![ GoDoc] ( https://godoc.org/github.com/contiv/contivmodel/client?status.png )] ( https://godoc.org/github.com/contiv/contivmodel/client )
2
+
3
+ # Contiv Object Model
4
+ This is how current object model looks like:
5
+
6
+ ![ Contiv Object Model] ( ./contivModel.png " Contiv Object Model ")
7
+
8
+ ### Using go client
9
+ Here is an example of how to use contiv go client
10
+
11
+ ```
12
+ package main
13
+
14
+ import (
15
+ "log"
16
+
17
+ "github.com/contiv/contivModel/client"
18
+ )
19
+
20
+ func main() {
21
+ cl, err := client.NewContivClient("localhost:9999")
22
+ if err != nil {
23
+ log.Fatal(err)
24
+ }
25
+
26
+ // Define a policy
27
+ policy := client.Policy{
28
+ TenantName: "tenant1",
29
+ PolicyName: "policy",
30
+ }
31
+
32
+ // Create policy
33
+ err = cl.PostPolicy(policy)
34
+ if err != nil {
35
+ log.Errorf("Policy Creation failed. Err: %v", err)
36
+ }
37
+ }
38
+ ```
You can’t perform that action at this time.
0 commit comments