ConnName represents the "instance connection name", in the format "project:region:name".
type ConnName struct {
// contains filtered or unexported fields
}
func ParseConnName(cn string) (ConnName, error)
ParseConnName initializes a new ConnName struct.
func (c *ConnName) Name() string
Name returns the Cloud SQL instance name
func (c *ConnName) Project() string
Project returns the project within which the Cloud SQL instance runs.
func (c *ConnName) Region() string
Region returns the region where the Cloud SQL instance runs.
func (c *ConnName) String() string