Versions in this module Expand all Collapse all v0 v0.1.0 Aug 27, 2020 Changes in this version + type BranchService struct + func (s *BranchService) Branch(branchId []byte) (*code_push.Branch, error) + func (s *BranchService) CreateBranch(branch *code_push.Branch) error + func (s *BranchService) DeleteBranch(branchId []byte) error + func (s *BranchService) IsBranchAvailable(branchId []byte) bool + func (s *BranchService) IsBranchNameExisted(branchName []byte) (bool, error) + type Client struct + Path string + func NewClient() *Client + func (c *Client) BranchService() *BranchService + func (c *Client) Close() error + func (c *Client) DomainService() domain.Service + func (c *Client) EnvService() *EnvService + func (c *Client) Open() error + func (c *Client) VersionService() *VersionService + type EnvService struct + func (s *EnvService) CreateEnv(env *code_push.Env) error + func (s *EnvService) DeleteEnv(envId []byte) error + func (s *EnvService) Env(envId []byte) (*code_push.Env, error) + func (s *EnvService) IsEnvAvailable(envId []byte) bool + func (s *EnvService) IsEnvNameExisted(branchId, envName []byte) (bool, error) + type VersionService struct + func (s *VersionService) CreateVersion(version *code_push.Version) error + func (s *VersionService) IsVersionAvailable(envId, appVersion []byte) (bool, error) + func (s *VersionService) Version(envId, appVersion []byte) (*code_push.Version, error) + func (s *VersionService) VersionsWithEnvId(envId []byte) (code_push.VersionList, error)