Documentation
¶
Index ¶
- type BackupsService
- func (b *BackupsService) Create(ctx context.Context, req *ps.CreateBackupRequest) (*ps.Backup, error)
- func (b *BackupsService) Delete(ctx context.Context, req *ps.DeleteBackupRequest) error
- func (b *BackupsService) Get(ctx context.Context, req *ps.GetBackupRequest) (*ps.Backup, error)
- func (b *BackupsService) List(ctx context.Context, req *ps.ListBackupsRequest) ([]*ps.Backup, error)
- type DatabaseBranchesService
- func (d *DatabaseBranchesService) Create(ctx context.Context, req *ps.CreateDatabaseBranchRequest) (*ps.DatabaseBranch, error)
- func (d *DatabaseBranchesService) Delete(ctx context.Context, req *ps.DeleteDatabaseBranchRequest) error
- func (d *DatabaseBranchesService) Get(ctx context.Context, req *ps.GetDatabaseBranchRequest) (*ps.DatabaseBranch, error)
- func (d *DatabaseBranchesService) GetStatus(ctx context.Context, req *ps.GetDatabaseBranchStatusRequest) (*ps.DatabaseBranchStatus, error)
- func (d *DatabaseBranchesService) List(ctx context.Context, req *ps.ListDatabaseBranchesRequest) ([]*ps.DatabaseBranch, error)
- type DatabaseService
- func (d *DatabaseService) Create(ctx context.Context, req *ps.CreateDatabaseRequest) (*ps.Database, error)
- func (d *DatabaseService) Delete(ctx context.Context, req *ps.DeleteDatabaseRequest) error
- func (d *DatabaseService) Get(ctx context.Context, req *ps.GetDatabaseRequest) (*ps.Database, error)
- func (d *DatabaseService) List(ctx context.Context, req *ps.ListDatabasesRequest) ([]*ps.Database, error)
- type DeployRequestsService
- func (d *DeployRequestsService) CancelDeploy(ctx context.Context, req *ps.CancelDeployRequestRequest) (*ps.DeployRequest, error)
- func (d *DeployRequestsService) CloseDeploy(ctx context.Context, req *ps.CloseDeployRequestRequest) (*ps.DeployRequest, error)
- func (d *DeployRequestsService) Create(ctx context.Context, req *ps.CreateDeployRequestRequest) (*ps.DeployRequest, error)
- func (d *DeployRequestsService) CreateReview(ctx context.Context, req *ps.ReviewDeployRequestRequest) (*ps.DeployRequestReview, error)
- func (d *DeployRequestsService) Deploy(ctx context.Context, req *ps.PerformDeployRequest) (*ps.DeployRequest, error)
- func (d *DeployRequestsService) Diff(ctx context.Context, req *ps.DiffRequest) ([]*ps.Diff, error)
- func (d *DeployRequestsService) Get(ctx context.Context, req *ps.GetDeployRequestRequest) (*ps.DeployRequest, error)
- func (d *DeployRequestsService) List(ctx context.Context, req *ps.ListDeployRequestsRequest) ([]*ps.DeployRequest, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BackupsService ¶ added in v0.17.0
type BackupsService struct { CreateFn func(context.Context, *ps.CreateBackupRequest) (*ps.Backup, error) CreateFnInvoked bool GetFn func(context.Context, *ps.GetBackupRequest) (*ps.Backup, error) GetFnInvoked bool ListFn func(context.Context, *ps.ListBackupsRequest) ([]*ps.Backup, error) ListFnInvoked bool DeleteFn func(context.Context, *ps.DeleteBackupRequest) error DeleteFnInvoked bool }
func (*BackupsService) Create ¶ added in v0.17.0
func (b *BackupsService) Create(ctx context.Context, req *ps.CreateBackupRequest) (*ps.Backup, error)
func (*BackupsService) Delete ¶ added in v0.17.0
func (b *BackupsService) Delete(ctx context.Context, req *ps.DeleteBackupRequest) error
func (*BackupsService) Get ¶ added in v0.17.0
func (b *BackupsService) Get(ctx context.Context, req *ps.GetBackupRequest) (*ps.Backup, error)
func (*BackupsService) List ¶ added in v0.17.0
func (b *BackupsService) List(ctx context.Context, req *ps.ListBackupsRequest) ([]*ps.Backup, error)
type DatabaseBranchesService ¶ added in v0.16.0
type DatabaseBranchesService struct { CreateFn func(context.Context, *ps.CreateDatabaseBranchRequest) (*ps.DatabaseBranch, error) CreateFnInvoked bool ListFn func(context.Context, *ps.ListDatabaseBranchesRequest) ([]*ps.DatabaseBranch, error) ListFnInvoked bool GetFn func(context.Context, *ps.GetDatabaseBranchRequest) (*ps.DatabaseBranch, error) GetFnInvoked bool DeleteFn func(context.Context, *ps.DeleteDatabaseBranchRequest) error DeleteFnInvoked bool GetStatusFn func(context.Context, *ps.GetDatabaseBranchStatusRequest) (*ps.DatabaseBranchStatus, error) GetStatusFnInvoked bool }
func (*DatabaseBranchesService) Create ¶ added in v0.16.0
func (d *DatabaseBranchesService) Create(ctx context.Context, req *ps.CreateDatabaseBranchRequest) (*ps.DatabaseBranch, error)
func (*DatabaseBranchesService) Delete ¶ added in v0.16.0
func (d *DatabaseBranchesService) Delete(ctx context.Context, req *ps.DeleteDatabaseBranchRequest) error
func (*DatabaseBranchesService) Get ¶ added in v0.16.0
func (d *DatabaseBranchesService) Get(ctx context.Context, req *ps.GetDatabaseBranchRequest) (*ps.DatabaseBranch, error)
func (*DatabaseBranchesService) GetStatus ¶ added in v0.16.0
func (d *DatabaseBranchesService) GetStatus(ctx context.Context, req *ps.GetDatabaseBranchStatusRequest) (*ps.DatabaseBranchStatus, error)
func (*DatabaseBranchesService) List ¶ added in v0.16.0
func (d *DatabaseBranchesService) List(ctx context.Context, req *ps.ListDatabaseBranchesRequest) ([]*ps.DatabaseBranch, error)
type DatabaseService ¶
type DatabaseService struct { CreateFn func(context.Context, *ps.CreateDatabaseRequest) (*ps.Database, error) CreateFnInvoked bool GetFn func(context.Context, *ps.GetDatabaseRequest) (*ps.Database, error) GetFnInvoked bool ListFn func(context.Context, *ps.ListDatabasesRequest) ([]*ps.Database, error) ListFnInvoked bool DeleteFn func(context.Context, *ps.DeleteDatabaseRequest) error DeleteFnInvoked bool }
func (*DatabaseService) Create ¶
func (d *DatabaseService) Create(ctx context.Context, req *ps.CreateDatabaseRequest) (*ps.Database, error)
func (*DatabaseService) Delete ¶
func (d *DatabaseService) Delete(ctx context.Context, req *ps.DeleteDatabaseRequest) error
func (*DatabaseService) Get ¶
func (d *DatabaseService) Get(ctx context.Context, req *ps.GetDatabaseRequest) (*ps.Database, error)
func (*DatabaseService) List ¶
func (d *DatabaseService) List(ctx context.Context, req *ps.ListDatabasesRequest) ([]*ps.Database, error)
type DeployRequestsService ¶ added in v0.16.1
type DeployRequestsService struct { CancelFn func(context.Context, *ps.CancelDeployRequestRequest) (*ps.DeployRequest, error) CancelFnInvoked bool CloseFn func(context.Context, *ps.CloseDeployRequestRequest) (*ps.DeployRequest, error) CloseFnInvoked bool CreateFn func(context.Context, *ps.CreateDeployRequestRequest) (*ps.DeployRequest, error) CreateFnInvoked bool CreateReviewFn func(context.Context, *ps.ReviewDeployRequestRequest) (*ps.DeployRequestReview, error) CreateReviewFnInvoked bool DeployFn func(context.Context, *ps.PerformDeployRequest) (*ps.DeployRequest, error) DeployFnInvoked bool DiffFn func(context.Context, *ps.DiffRequest) ([]*ps.Diff, error) DiffFnInvoked bool GetFn func(context.Context, *ps.GetDeployRequestRequest) (*ps.DeployRequest, error) GetFnInvoked bool ListFn func(context.Context, *ps.ListDeployRequestsRequest) ([]*ps.DeployRequest, error) ListFnInvoked bool }
func (*DeployRequestsService) CancelDeploy ¶ added in v0.16.1
func (d *DeployRequestsService) CancelDeploy(ctx context.Context, req *ps.CancelDeployRequestRequest) (*ps.DeployRequest, error)
func (*DeployRequestsService) CloseDeploy ¶ added in v0.16.1
func (d *DeployRequestsService) CloseDeploy(ctx context.Context, req *ps.CloseDeployRequestRequest) (*ps.DeployRequest, error)
func (*DeployRequestsService) Create ¶ added in v0.16.1
func (d *DeployRequestsService) Create(ctx context.Context, req *ps.CreateDeployRequestRequest) (*ps.DeployRequest, error)
func (*DeployRequestsService) CreateReview ¶ added in v0.16.1
func (d *DeployRequestsService) CreateReview(ctx context.Context, req *ps.ReviewDeployRequestRequest) (*ps.DeployRequestReview, error)
func (*DeployRequestsService) Deploy ¶ added in v0.16.1
func (d *DeployRequestsService) Deploy(ctx context.Context, req *ps.PerformDeployRequest) (*ps.DeployRequest, error)
func (*DeployRequestsService) Diff ¶ added in v0.16.1
func (d *DeployRequestsService) Diff(ctx context.Context, req *ps.DiffRequest) ([]*ps.Diff, error)
func (*DeployRequestsService) Get ¶ added in v0.16.1
func (d *DeployRequestsService) Get(ctx context.Context, req *ps.GetDeployRequestRequest) (*ps.DeployRequest, error)
func (*DeployRequestsService) List ¶ added in v0.16.1
func (d *DeployRequestsService) List(ctx context.Context, req *ps.ListDeployRequestsRequest) ([]*ps.DeployRequest, error)
Click to show internal directories.
Click to hide internal directories.