Skip to content

Commit 13de539

Browse files
committed
chore(mariadb): substitute strings
1 parent 69a347e commit 13de539

23 files changed

Lines changed: 26 additions & 26 deletions

File tree

internal/cmd/mariadb/credentials/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/stackitcloud/stackit-cli/internal/pkg/utils"
1818

1919
"github.com/spf13/cobra"
20-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
20+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
2121
)
2222

2323
const (

internal/cmd/mariadb/credentials/create/create_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/google/go-cmp/cmp"
1212
"github.com/google/go-cmp/cmp/cmpopts"
1313
"github.com/google/uuid"
14-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
14+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
1515
)
1616

1717
var projectIdFlag = globalflags.ProjectIdFlag

internal/cmd/mariadb/credentials/delete/delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/stackitcloud/stackit-cli/internal/pkg/utils"
1818

1919
"github.com/spf13/cobra"
20-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
20+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
2121
)
2222

2323
const (

internal/cmd/mariadb/credentials/delete/delete_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/google/go-cmp/cmp"
1111
"github.com/google/go-cmp/cmp/cmpopts"
1212
"github.com/google/uuid"
13-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
13+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
1414
)
1515

1616
var projectIdFlag = globalflags.ProjectIdFlag

internal/cmd/mariadb/credentials/describe/describe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/stackitcloud/stackit-cli/internal/pkg/utils"
1818

1919
"github.com/spf13/cobra"
20-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
20+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
2121
)
2222

2323
const (

internal/cmd/mariadb/credentials/describe/describe_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/google/go-cmp/cmp"
1212
"github.com/google/go-cmp/cmp/cmpopts"
1313
"github.com/google/uuid"
14-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
14+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
1515
)
1616

1717
var projectIdFlag = globalflags.ProjectIdFlag

internal/cmd/mariadb/credentials/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/stackitcloud/stackit-cli/internal/pkg/types"
88

99
"github.com/spf13/cobra"
10-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
10+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
1111

1212
"github.com/stackitcloud/stackit-cli/internal/pkg/args"
1313
"github.com/stackitcloud/stackit-cli/internal/pkg/errors"

internal/cmd/mariadb/credentials/list/list_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/google/go-cmp/cmp"
1313
"github.com/google/go-cmp/cmp/cmpopts"
1414
"github.com/google/uuid"
15-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
15+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
1616
)
1717

1818
type testCtxKey struct{}

internal/cmd/mariadb/instance/create/create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"github.com/stackitcloud/stackit-cli/internal/pkg/utils"
2222

2323
"github.com/spf13/cobra"
24-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
25-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb/wait"
24+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
25+
"github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api/wait"
2626
)
2727

2828
const (

internal/cmd/mariadb/instance/create/create_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/google/go-cmp/cmp"
1414
"github.com/google/go-cmp/cmp/cmpopts"
1515
"github.com/google/uuid"
16-
"github.com/stackitcloud/stackit-sdk-go/services/mariadb"
16+
mariadb "github.com/stackitcloud/stackit-sdk-go/services/mariadb/v1api"
1717
)
1818

1919
var projectIdFlag = globalflags.ProjectIdFlag

0 commit comments

Comments
 (0)