Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ require (
github.com/json-iterator/go v1.1.12
github.com/keboola/go-cloud-encrypt v0.0.0-20250422071622-41a5d5547c43
github.com/keboola/go-utils v1.4.0
github.com/keboola/keboola-sdk-go/v2 v2.18.0
github.com/keboola/keboola-sdk-go/v2 v2.17.1-0.20260326212557-482d079b522e
github.com/keboola/keboola-sdk-go/v2/transfer v1.0.0
github.com/klauspost/compress v1.18.4
github.com/klauspost/pgzip v1.2.6
Expand Down Expand Up @@ -316,7 +316,7 @@ require (
github.com/gorilla/mux v1.8.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
github.com/hexops/gotextdiff v1.0.3 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@ github.com/keboola/go-oauth2-proxy/v7 v7.13.1-0.20251120082210-251fbcb18c16 h1:m
github.com/keboola/go-oauth2-proxy/v7 v7.13.1-0.20251120082210-251fbcb18c16/go.mod h1:2KeAM0/QPbyUAoky+PXVgQDt/5m0qNcn30z9jh4ig8A=
github.com/keboola/go-utils v1.4.0 h1:WTyj95yrr8O8HxtC8TSTyUcElZiRGDeEdVvDpFo6HUo=
github.com/keboola/go-utils v1.4.0/go.mod h1:IopwJzFz2gh0Yj3fUbIe2eamRoDKzbXvjqFjQyw3ZdQ=
github.com/keboola/keboola-sdk-go/v2 v2.18.0 h1:wkHTV4eUHr3aEwHmbo/Lhxq1uiYzdFbcMfY38Icvo2Q=
github.com/keboola/keboola-sdk-go/v2 v2.18.0/go.mod h1:dLDyVUt6gMPGoXgON8yKh6+k4VEMlByXMqkK7rL1kuE=
github.com/keboola/keboola-sdk-go/v2 v2.17.1-0.20260326212557-482d079b522e h1:J3AfxA2zcZU5aZt98fbDc7XKuqYi17ZqZh3sZISSZFI=
github.com/keboola/keboola-sdk-go/v2 v2.17.1-0.20260326212557-482d079b522e/go.mod h1:dLDyVUt6gMPGoXgON8yKh6+k4VEMlByXMqkK7rL1kuE=
github.com/keboola/keboola-sdk-go/v2/transfer v1.0.0 h1:mjwUdS9W+0QDYycam20u0B3LSSEUpXFvHyH9Q5j6fwA=
github.com/keboola/keboola-sdk-go/v2/transfer v1.0.0/go.mod h1:+K9kZRslskn0r3qZmyXXd7trrApNQrs1aVUcfbTm2V4=
github.com/keybase/go-keychain v0.0.1 h1:way+bWYa6lDppZoZcgMbYsvC7GxljxrskdNInRtuthU=
Expand Down
10 changes: 5 additions & 5 deletions internal/pkg/fixtures/fixtures.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ type Schedule struct {
}

type Sandbox struct {
Name string `json:"name" validate:"required"`
Type keboola.SandboxWorkspaceType `json:"type" validate:"required"`
Size string `json:"size,omitempty"`
UseKeyPair bool `json:"useKeyPair,omitempty"` // If true, create sandbox with key-pair authentication instead of password
Name string `json:"name" validate:"required"`
Type string `json:"type" validate:"required"`
Size string `json:"size,omitempty"`
UseKeyPair bool `json:"useKeyPair,omitempty"` // If true, create sandbox with key-pair authentication instead of password
}

type Bucket struct {
Expand Down Expand Up @@ -173,7 +173,7 @@ func (r *ConfigRow) String() string {
}

func (s *Sandbox) String() string {
return s.Type.String() + "_" + s.Size
return s.Type + "_" + s.Size
}

func (b *Branch) ObjectName() string {
Expand Down
Loading
Loading