Adding os-services in blockstorage api

Change-Id: I6ded5a930c4d43288053014cb77a946732f37f12
diff --git a/openstack/blockstorage/extensions/os-services/results.go b/openstack/blockstorage/extensions/os-services/results.go
new file mode 100644
index 0000000..3c6bb04
--- /dev/null
+++ b/openstack/blockstorage/extensions/os-services/results.go
@@ -0,0 +1,24 @@
+package os_services
+
+import "gerrit.mcp.mirantis.net/debian/gophercloud.git/pagination"
+
+type OsService struct {
+	ID     string `json:"id"`
+	Host   string `json:"host"`
+	State  string `json:"state"`
+	Status string `json:"status"`
+	Zone   string `json:"zone"`
+	Binary string `json:"binary"`
+}
+
+type OsServicePage struct {
+	pagination.SinglePageBase
+}
+
+func ExtractOsServices(r pagination.Page) ([]OsService, error) {
+	var s struct {
+		OsServices []OsService `json:"services"`
+	}
+	err := (r.(OsServicePage)).ExtractInto(&s)
+	return s.OsServices, err
+}