VOL-3747: Added image management documentation and link to BBSim docs

Change-Id: Iecb692586eadc6719fe5315b9717b05738226e0f
diff --git a/README.md b/README.md
index 6093505..0cbcc92 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@
 Related documentations can be found in the [docs/](./docs) directory.
 
 For anybody looking to implement a Device Manager component we suggest looking at the [RPC guidelines](docs/RpcGuidelines.md).
-Then Each API in the `.proto` files has an explanation in its own `.md` file.
+Then Each API in the `.proto` files has an explanation in its own `.md` file. Examples of the APIs can be found [here](docs/Examples.md)
 
 ## Meetings
 
diff --git a/VERSION b/VERSION
index e3e1807..7e310ba 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.9.8
+0.9.9
diff --git a/docs/Examples.md b/docs/Examples.md
new file mode 100644
index 0000000..431a705
--- /dev/null
+++ b/docs/Examples.md
@@ -0,0 +1,12 @@
+# Examples of usage of the APIs
+BBSim implements the DeviceManagement Server and most of the examples of usage of the APIs using grpurl can be found in the [BBSim docs here](https://github.com/opencord/bbsim/blob/master/docs/source/DMI_Server_README.md)
+
+## Image Management APIs
+### DownloadImage
+```sh
+$ grpcurl -v -plaintext -d "{\"device_uuid\": {\"uuid\": \"$UUID\"}, \"image_info\": {\"image_url\": \"sftp://$USER:$PASSWORD@10.34.90.43:22/upload/olt-image-v1.2.3-onie_inst.bin\"}}" $DM_IP dmi.NativeSoftwareManagementService.DownloadImage
+```
+### ActivateImage
+``` sh
+$ grpcurl -v -plaintext -d "{\"uuid\": {\"uuid\": \"$UUID\"}}" $DM_IP dmi.NativeSoftwareManagementService.ActivateImage
+```