From f9e6fdb9a68288be7292a6d417cfffb52d83f98e Mon Sep 17 00:00:00 2001 From: hkavya26 Date: Thu, 23 Dec 2021 15:02:57 +0530 Subject: [PATCH] Support Mysql --- api/icd/icdv4/connection.go | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/api/icd/icdv4/connection.go b/api/icd/icdv4/connection.go index 5f3f7dfd..1441bc97 100644 --- a/api/icd/icdv4/connection.go +++ b/api/icd/icdv4/connection.go @@ -2,6 +2,7 @@ package icdv4 import ( "fmt" + "github.com/IBM-Cloud/bluemix-go/client" "github.com/IBM-Cloud/bluemix-go/utils" ) @@ -16,14 +17,15 @@ type ConnectionRes struct { } type Connection struct { - Rediss Uri `json:"rediss"` - Grpc Uri `json:"grpc"` - Postgres Uri `json:"postgres"` - Https Uri `json:"https"` - Amqps Uri `json:"amqps"` - Cli CliConn `json:"cli"` - Mongo Uri `json:"mongodb"` - Secure CassandraUri `json:"secure"` + Rediss Uri `json:"rediss"` + Grpc Uri `json:"grpc"` + Postgres Uri `json:"postgres"` + Https Uri `json:"https"` + Amqps Uri `json:"amqps"` + Cli CliConn `json:"cli"` + Mongo Uri `json:"mongodb"` + Secure CassandraUri `json:"secure"` + Mysql Uri `json:"mysql"` } type CassandraUri struct {