CreateWorkspace creates a new workspace for the template specified. Deprecated: Use CreateUserWorkspace instead.
(ctx context.Context, _ uuid.UUID, user string, request CreateWorkspaceRequest)
| 649 | // |
| 650 | // Deprecated: Use CreateUserWorkspace instead. |
| 651 | func (c *Client) CreateWorkspace(ctx context.Context, _ uuid.UUID, user string, request CreateWorkspaceRequest) (Workspace, error) { |
| 652 | return c.CreateUserWorkspace(ctx, user, request) |
| 653 | } |
| 654 | |
| 655 | // CreateUserWorkspace creates a new workspace for the template specified. |
| 656 | func (c *Client) CreateUserWorkspace(ctx context.Context, user string, request CreateWorkspaceRequest) (Workspace, error) { |