Documentation
¶
Index ¶
- Constants
- Variables
- func CheckDeletedPlanDetailsV1ById(ctx context.Context, id string) (bool, error)
- func CheckDeletedPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (bool, error)
- func CheckDeletedProvisionRequestDetailsById(ctx context.Context, id uint) (bool, error)
- func CheckDeletedServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (bool, error)
- func CheckDeletedServiceBindingCredentialsById(ctx context.Context, id uint) (bool, error)
- func CheckDeletedServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (bool, error)
- func CheckDeletedServiceInstanceDetailsById(ctx context.Context, id string) (bool, error)
- func CountPlanDetailsV1ById(ctx context.Context, id string) (int, error)
- func CountPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (int, error)
- func CountProvisionRequestDetailsById(ctx context.Context, id uint) (int, error)
- func CountServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (int, error)
- func CountServiceBindingCredentialsById(ctx context.Context, id uint) (int, error)
- func CountServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (int, error)
- func CountServiceInstanceDetailsById(ctx context.Context, id string) (int, error)
- func CreatePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
- func CreateProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
- func CreateServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
- func CreateServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error
- func DeletePlanDetailsV1(ctx context.Context, record *models.PlanDetailsV1) error
- func DeletePlanDetailsV1ById(ctx context.Context, id string) error
- func DeletePlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) error
- func DeleteProvisionRequestDetails(ctx context.Context, record *models.ProvisionRequestDetails) error
- func DeleteProvisionRequestDetailsById(ctx context.Context, id uint) error
- func DeleteServiceBindingCredentials(ctx context.Context, record *models.ServiceBindingCredentials) error
- func DeleteServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) error
- func DeleteServiceBindingCredentialsById(ctx context.Context, id uint) error
- func DeleteServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) error
- func DeleteServiceInstanceDetails(ctx context.Context, record *models.ServiceInstanceDetails) error
- func DeleteServiceInstanceDetailsById(ctx context.Context, id string) error
- func GetPlanDetailsV1ById(ctx context.Context, id string) (*models.PlanDetailsV1, error)
- func GetPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (*models.PlanDetailsV1, error)
- func GetProvisionRequestDetailsById(ctx context.Context, id uint) (*models.ProvisionRequestDetails, error)
- func GetServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (*models.ServiceBindingCredentials, error)
- func GetServiceBindingCredentialsById(ctx context.Context, id uint) (*models.ServiceBindingCredentials, error)
- func GetServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (*models.ServiceBindingCredentials, error)
- func GetServiceInstanceDetailsById(ctx context.Context, id string) (*models.ServiceInstanceDetails, error)
- func New(logger lager.Logger) *gorm.DB
- func RunMigrations(db *gorm.DB) error
- func SavePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
- func SaveProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
- func SaveServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
- func SaveServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error
- func SetupDb(logger lager.Logger) *gorm.DB
- type SqlDatastore
- func (ds *SqlDatastore) CheckDeletedPlanDetailsV1ById(ctx context.Context, id string) (bool, error)
- func (ds *SqlDatastore) CheckDeletedPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (bool, error)
- func (ds *SqlDatastore) CheckDeletedProvisionRequestDetailsById(ctx context.Context, id uint) (bool, error)
- func (ds *SqlDatastore) CheckDeletedServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (bool, error)
- func (ds *SqlDatastore) CheckDeletedServiceBindingCredentialsById(ctx context.Context, id uint) (bool, error)
- func (ds *SqlDatastore) CheckDeletedServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (bool, error)
- func (ds *SqlDatastore) CheckDeletedServiceInstanceDetailsById(ctx context.Context, id string) (bool, error)
- func (ds *SqlDatastore) CountPlanDetailsV1ById(ctx context.Context, id string) (int, error)
- func (ds *SqlDatastore) CountPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (int, error)
- func (ds *SqlDatastore) CountProvisionRequestDetailsById(ctx context.Context, id uint) (int, error)
- func (ds *SqlDatastore) CountServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (int, error)
- func (ds *SqlDatastore) CountServiceBindingCredentialsById(ctx context.Context, id uint) (int, error)
- func (ds *SqlDatastore) CountServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (int, error)
- func (ds *SqlDatastore) CountServiceInstanceDetailsById(ctx context.Context, id string) (int, error)
- func (ds *SqlDatastore) CreatePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
- func (ds *SqlDatastore) CreateProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
- func (ds *SqlDatastore) CreateServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
- func (ds *SqlDatastore) CreateServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error
- func (ds *SqlDatastore) DeletePlanDetailsV1(ctx context.Context, record *models.PlanDetailsV1) error
- func (ds *SqlDatastore) DeletePlanDetailsV1ById(ctx context.Context, id string) error
- func (ds *SqlDatastore) DeletePlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) error
- func (ds *SqlDatastore) DeleteProvisionRequestDetails(ctx context.Context, record *models.ProvisionRequestDetails) error
- func (ds *SqlDatastore) DeleteProvisionRequestDetailsById(ctx context.Context, id uint) error
- func (ds *SqlDatastore) DeleteServiceBindingCredentials(ctx context.Context, record *models.ServiceBindingCredentials) error
- func (ds *SqlDatastore) DeleteServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) error
- func (ds *SqlDatastore) DeleteServiceBindingCredentialsById(ctx context.Context, id uint) error
- func (ds *SqlDatastore) DeleteServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) error
- func (ds *SqlDatastore) DeleteServiceInstanceDetails(ctx context.Context, record *models.ServiceInstanceDetails) error
- func (ds *SqlDatastore) DeleteServiceInstanceDetailsById(ctx context.Context, id string) error
- func (ds *SqlDatastore) GetPlanDetailsV1ById(ctx context.Context, id string) (*models.PlanDetailsV1, error)
- func (ds *SqlDatastore) GetPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (*models.PlanDetailsV1, error)
- func (ds *SqlDatastore) GetProvisionRequestDetailsById(ctx context.Context, id uint) (*models.ProvisionRequestDetails, error)
- func (ds *SqlDatastore) GetServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (*models.ServiceBindingCredentials, error)
- func (ds *SqlDatastore) GetServiceBindingCredentialsById(ctx context.Context, id uint) (*models.ServiceBindingCredentials, error)
- func (ds *SqlDatastore) GetServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (*models.ServiceBindingCredentials, error)
- func (ds *SqlDatastore) GetServiceInstanceDetailsById(ctx context.Context, id string) (*models.ServiceInstanceDetails, error)
- func (ds *SqlDatastore) SavePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
- func (ds *SqlDatastore) SaveProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
- func (ds *SqlDatastore) SaveServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
- func (ds *SqlDatastore) SaveServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error
Constants ¶
const ( DbTypeMysql = "mysql" DbTypeSqlite3 = "sqlite3" )
Variables ¶
var DbConnection *gorm.DB
Functions ¶
func CheckDeletedPlanDetailsV1ById ¶
CheckDeletedPlanDetailsV1ById checks to see if an instance of PlanDetailsV1 was soft deleted by its key (id).
func CheckDeletedPlanDetailsV1ByServiceIdAndName ¶
func CheckDeletedPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (bool, error)
CheckDeletedPlanDetailsV1ByServiceIdAndName checks to see if an instance of PlanDetailsV1 was soft deleted by its key (serviceId, name).
func CheckDeletedProvisionRequestDetailsById ¶
CheckDeletedProvisionRequestDetailsById checks to see if an instance of ProvisionRequestDetails was soft deleted by its key (id).
func CheckDeletedServiceBindingCredentialsByBindingId ¶
func CheckDeletedServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (bool, error)
CheckDeletedServiceBindingCredentialsByBindingId checks to see if an instance of ServiceBindingCredentials was soft deleted by its key (bindingId).
func CheckDeletedServiceBindingCredentialsById ¶
CheckDeletedServiceBindingCredentialsById checks to see if an instance of ServiceBindingCredentials was soft deleted by its key (id).
func CheckDeletedServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func CheckDeletedServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (bool, error)
CheckDeletedServiceBindingCredentialsByServiceInstanceIdAndBindingId checks to see if an instance of ServiceBindingCredentials was soft deleted by its key (serviceInstanceId, bindingId).
func CheckDeletedServiceInstanceDetailsById ¶
CheckDeletedServiceInstanceDetailsById checks to see if an instance of ServiceInstanceDetails was soft deleted by its key (id).
func CountPlanDetailsV1ById ¶
CountPlanDetailsV1ById gets the count of PlanDetailsV1 by its key (id) in the datastore (0 or 1)
func CountPlanDetailsV1ByServiceIdAndName ¶
func CountPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (int, error)
CountPlanDetailsV1ByServiceIdAndName gets the count of PlanDetailsV1 by its key (serviceId, name) in the datastore (0 or 1)
func CountProvisionRequestDetailsById ¶
CountProvisionRequestDetailsById gets the count of ProvisionRequestDetails by its key (id) in the datastore (0 or 1)
func CountServiceBindingCredentialsByBindingId ¶
CountServiceBindingCredentialsByBindingId gets the count of ServiceBindingCredentials by its key (bindingId) in the datastore (0 or 1)
func CountServiceBindingCredentialsById ¶
CountServiceBindingCredentialsById gets the count of ServiceBindingCredentials by its key (id) in the datastore (0 or 1)
func CountServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func CountServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (int, error)
CountServiceBindingCredentialsByServiceInstanceIdAndBindingId gets the count of ServiceBindingCredentials by its key (serviceInstanceId, bindingId) in the datastore (0 or 1)
func CountServiceInstanceDetailsById ¶
CountServiceInstanceDetailsById gets the count of ServiceInstanceDetails by its key (id) in the datastore (0 or 1)
func CreatePlanDetailsV1 ¶
func CreatePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
CreatePlanDetailsV1 creates a new record in the database and assigns it a primary key.
func CreateProvisionRequestDetails ¶
func CreateProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
CreateProvisionRequestDetails creates a new record in the database and assigns it a primary key.
func CreateServiceBindingCredentials ¶
func CreateServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
CreateServiceBindingCredentials creates a new record in the database and assigns it a primary key.
func CreateServiceInstanceDetails ¶
func CreateServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error
CreateServiceInstanceDetails creates a new record in the database and assigns it a primary key.
func DeletePlanDetailsV1 ¶
func DeletePlanDetailsV1(ctx context.Context, record *models.PlanDetailsV1) error
DeletePlanDetailsV1 soft-deletes the record.
func DeletePlanDetailsV1ById ¶
DeletePlanDetailsV1ById soft-deletes the record by its key (id).
func DeletePlanDetailsV1ByServiceIdAndName ¶
func DeletePlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) error
DeletePlanDetailsV1ByServiceIdAndName soft-deletes the record by its key (serviceId, name).
func DeleteProvisionRequestDetails ¶
func DeleteProvisionRequestDetails(ctx context.Context, record *models.ProvisionRequestDetails) error
DeleteProvisionRequestDetails soft-deletes the record.
func DeleteProvisionRequestDetailsById ¶
DeleteProvisionRequestDetailsById soft-deletes the record by its key (id).
func DeleteServiceBindingCredentials ¶
func DeleteServiceBindingCredentials(ctx context.Context, record *models.ServiceBindingCredentials) error
DeleteServiceBindingCredentials soft-deletes the record.
func DeleteServiceBindingCredentialsByBindingId ¶
DeleteServiceBindingCredentialsByBindingId soft-deletes the record by its key (bindingId).
func DeleteServiceBindingCredentialsById ¶
DeleteServiceBindingCredentialsById soft-deletes the record by its key (id).
func DeleteServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func DeleteServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) error
DeleteServiceBindingCredentialsByServiceInstanceIdAndBindingId soft-deletes the record by its key (serviceInstanceId, bindingId).
func DeleteServiceInstanceDetails ¶
func DeleteServiceInstanceDetails(ctx context.Context, record *models.ServiceInstanceDetails) error
DeleteServiceInstanceDetails soft-deletes the record.
func DeleteServiceInstanceDetailsById ¶
DeleteServiceInstanceDetailsById soft-deletes the record by its key (id).
func GetPlanDetailsV1ById ¶
GetPlanDetailsV1ById gets an instance of PlanDetailsV1 by its key (id).
func GetPlanDetailsV1ByServiceIdAndName ¶
func GetPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (*models.PlanDetailsV1, error)
GetPlanDetailsV1ByServiceIdAndName gets an instance of PlanDetailsV1 by its key (serviceId, name).
func GetProvisionRequestDetailsById ¶
func GetProvisionRequestDetailsById(ctx context.Context, id uint) (*models.ProvisionRequestDetails, error)
GetProvisionRequestDetailsById gets an instance of ProvisionRequestDetails by its key (id).
func GetServiceBindingCredentialsByBindingId ¶
func GetServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (*models.ServiceBindingCredentials, error)
GetServiceBindingCredentialsByBindingId gets an instance of ServiceBindingCredentials by its key (bindingId).
func GetServiceBindingCredentialsById ¶
func GetServiceBindingCredentialsById(ctx context.Context, id uint) (*models.ServiceBindingCredentials, error)
GetServiceBindingCredentialsById gets an instance of ServiceBindingCredentials by its key (id).
func GetServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func GetServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (*models.ServiceBindingCredentials, error)
GetServiceBindingCredentialsByServiceInstanceIdAndBindingId gets an instance of ServiceBindingCredentials by its key (serviceInstanceId, bindingId).
func GetServiceInstanceDetailsById ¶
func GetServiceInstanceDetailsById(ctx context.Context, id string) (*models.ServiceInstanceDetails, error)
GetServiceInstanceDetailsById gets an instance of ServiceInstanceDetails by its key (id).
func RunMigrations ¶
runs schema migrations on the provided service broker database to get it up to date
func SavePlanDetailsV1 ¶
func SavePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
SavePlanDetailsV1 updates an existing record in the database.
func SaveProvisionRequestDetails ¶
func SaveProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
SaveProvisionRequestDetails updates an existing record in the database.
func SaveServiceBindingCredentials ¶
func SaveServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
SaveServiceBindingCredentials updates an existing record in the database.
func SaveServiceInstanceDetails ¶
func SaveServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error
SaveServiceInstanceDetails updates an existing record in the database.
Types ¶
type SqlDatastore ¶
type SqlDatastore struct {
// contains filtered or unexported fields
}
func (*SqlDatastore) CheckDeletedPlanDetailsV1ById ¶
func (*SqlDatastore) CheckDeletedPlanDetailsV1ByServiceIdAndName ¶
func (*SqlDatastore) CheckDeletedProvisionRequestDetailsById ¶
func (*SqlDatastore) CheckDeletedServiceBindingCredentialsByBindingId ¶
func (*SqlDatastore) CheckDeletedServiceBindingCredentialsById ¶
func (*SqlDatastore) CheckDeletedServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func (*SqlDatastore) CheckDeletedServiceInstanceDetailsById ¶
func (*SqlDatastore) CountPlanDetailsV1ById ¶
func (*SqlDatastore) CountPlanDetailsV1ByServiceIdAndName ¶
func (*SqlDatastore) CountProvisionRequestDetailsById ¶
func (*SqlDatastore) CountServiceBindingCredentialsByBindingId ¶
func (*SqlDatastore) CountServiceBindingCredentialsById ¶
func (*SqlDatastore) CountServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func (*SqlDatastore) CountServiceInstanceDetailsById ¶
func (*SqlDatastore) CreatePlanDetailsV1 ¶
func (ds *SqlDatastore) CreatePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
func (*SqlDatastore) CreateProvisionRequestDetails ¶
func (ds *SqlDatastore) CreateProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
func (*SqlDatastore) CreateServiceBindingCredentials ¶
func (ds *SqlDatastore) CreateServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
func (*SqlDatastore) CreateServiceInstanceDetails ¶
func (ds *SqlDatastore) CreateServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error
func (*SqlDatastore) DeletePlanDetailsV1 ¶
func (ds *SqlDatastore) DeletePlanDetailsV1(ctx context.Context, record *models.PlanDetailsV1) error
func (*SqlDatastore) DeletePlanDetailsV1ById ¶
func (ds *SqlDatastore) DeletePlanDetailsV1ById(ctx context.Context, id string) error
func (*SqlDatastore) DeletePlanDetailsV1ByServiceIdAndName ¶
func (*SqlDatastore) DeleteProvisionRequestDetails ¶
func (ds *SqlDatastore) DeleteProvisionRequestDetails(ctx context.Context, record *models.ProvisionRequestDetails) error
func (*SqlDatastore) DeleteProvisionRequestDetailsById ¶
func (ds *SqlDatastore) DeleteProvisionRequestDetailsById(ctx context.Context, id uint) error
func (*SqlDatastore) DeleteServiceBindingCredentials ¶
func (ds *SqlDatastore) DeleteServiceBindingCredentials(ctx context.Context, record *models.ServiceBindingCredentials) error
func (*SqlDatastore) DeleteServiceBindingCredentialsByBindingId ¶
func (ds *SqlDatastore) DeleteServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) error
func (*SqlDatastore) DeleteServiceBindingCredentialsById ¶
func (ds *SqlDatastore) DeleteServiceBindingCredentialsById(ctx context.Context, id uint) error
func (*SqlDatastore) DeleteServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func (*SqlDatastore) DeleteServiceInstanceDetails ¶
func (ds *SqlDatastore) DeleteServiceInstanceDetails(ctx context.Context, record *models.ServiceInstanceDetails) error
func (*SqlDatastore) DeleteServiceInstanceDetailsById ¶
func (ds *SqlDatastore) DeleteServiceInstanceDetailsById(ctx context.Context, id string) error
func (*SqlDatastore) GetPlanDetailsV1ById ¶
func (ds *SqlDatastore) GetPlanDetailsV1ById(ctx context.Context, id string) (*models.PlanDetailsV1, error)
func (*SqlDatastore) GetPlanDetailsV1ByServiceIdAndName ¶
func (ds *SqlDatastore) GetPlanDetailsV1ByServiceIdAndName(ctx context.Context, serviceId string, name string) (*models.PlanDetailsV1, error)
func (*SqlDatastore) GetProvisionRequestDetailsById ¶
func (ds *SqlDatastore) GetProvisionRequestDetailsById(ctx context.Context, id uint) (*models.ProvisionRequestDetails, error)
func (*SqlDatastore) GetServiceBindingCredentialsByBindingId ¶
func (ds *SqlDatastore) GetServiceBindingCredentialsByBindingId(ctx context.Context, bindingId string) (*models.ServiceBindingCredentials, error)
func (*SqlDatastore) GetServiceBindingCredentialsById ¶
func (ds *SqlDatastore) GetServiceBindingCredentialsById(ctx context.Context, id uint) (*models.ServiceBindingCredentials, error)
func (*SqlDatastore) GetServiceBindingCredentialsByServiceInstanceIdAndBindingId ¶
func (ds *SqlDatastore) GetServiceBindingCredentialsByServiceInstanceIdAndBindingId(ctx context.Context, serviceInstanceId string, bindingId string) (*models.ServiceBindingCredentials, error)
func (*SqlDatastore) GetServiceInstanceDetailsById ¶
func (ds *SqlDatastore) GetServiceInstanceDetailsById(ctx context.Context, id string) (*models.ServiceInstanceDetails, error)
func (*SqlDatastore) SavePlanDetailsV1 ¶
func (ds *SqlDatastore) SavePlanDetailsV1(ctx context.Context, object *models.PlanDetailsV1) error
func (*SqlDatastore) SaveProvisionRequestDetails ¶
func (ds *SqlDatastore) SaveProvisionRequestDetails(ctx context.Context, object *models.ProvisionRequestDetails) error
func (*SqlDatastore) SaveServiceBindingCredentials ¶
func (ds *SqlDatastore) SaveServiceBindingCredentials(ctx context.Context, object *models.ServiceBindingCredentials) error
func (*SqlDatastore) SaveServiceInstanceDetails ¶
func (ds *SqlDatastore) SaveServiceInstanceDetails(ctx context.Context, object *models.ServiceInstanceDetails) error