Documentation ¶
Index ¶
- func NewCmdOrg(t *terminal.Terminal, orgcmdStore OrgCmdStore, noorgcmdStore OrgCmdStore) *cobra.Command
- func NewCmdOrgLs(t *terminal.Terminal, orgcmdStore OrgCmdStore) *cobra.Command
- func NewCmdOrgSet(t *terminal.Terminal, orgcmdStore OrgCmdStore, noorgcmdStore OrgCmdStore) *cobra.Command
- func RunOrgs(t *terminal.Terminal, store OrgCmdStore) error
- type OrgCmdStore
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCmdOrg ¶
func NewCmdOrg(t *terminal.Terminal, orgcmdStore OrgCmdStore, noorgcmdStore OrgCmdStore) *cobra.Command
func NewCmdOrgLs ¶
func NewCmdOrgLs(t *terminal.Terminal, orgcmdStore OrgCmdStore) *cobra.Command
func NewCmdOrgSet ¶
func NewCmdOrgSet(t *terminal.Terminal, orgcmdStore OrgCmdStore, noorgcmdStore OrgCmdStore) *cobra.Command
Types ¶
type OrgCmdStore ¶
type OrgCmdStore interface { GetWorkspaces(organizationID string, options *store.GetWorkspacesOptions) ([]entity.Workspace, error) GetActiveOrganizationOrDefault() (*entity.Organization, error) GetCurrentUser() (*entity.User, error) GetUsers(queryParams map[string]string) ([]entity.User, error) GetWorkspace(workspaceID string) (*entity.Workspace, error) GetOrganizations(options *store.GetOrganizationsOptions) ([]entity.Organization, error) completions.CompletionStore vpn.ServiceMeshStore SetDefaultOrganization(org *entity.Organization) error GetServerSockFile() string CreateInviteLink(organizationID string) (string, error) }
Click to show internal directories.
Click to hide internal directories.