[DMI] Add Basic Auth to OpenAPI Definitions

-Adding basic auth to OpenAPI definitions

Issue-ID: CPS-1350
Signed-off-by: JosephKeenan <joseph.keenan@est.tech>
Change-Id: I33423ba50683bc76395ddbb8ef7afc1c185bf4b5
diff --git a/openapi/components.yml b/openapi/components.yml
index 049701e..6124d64 100644
--- a/openapi/components.yml
+++ b/openapi/components.yml
@@ -18,6 +18,10 @@
 #  ============LICENSE_END=========================================================
 
 components:
+  securitySchemes:
+    basicAuth:
+      type: http
+      scheme: basic
   schemas:
     ErrorMessage:
       type: object
@@ -209,3 +213,6 @@
       examples:
         sample1:
           value: my-topic-name
+
+security:
+  - basicAuth: []
\ No newline at end of file