fix(deps): update module github.com/stackitcloud/stackit-sdk-go/services/ske to v0.16.0 (#379)

* fix(deps): update module github.com/stackitcloud/stackit-sdk-go/services/ske to v0.16.0

* Rename data type

---------

Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
Co-authored-by: vicentepinto98 <vicente.pinto@freiheit.com>
This commit is contained in:
stackit-pipeline 2024-05-28 10:30:13 +02:00 committed by GitHub
parent ba7bf10db7
commit 6af9c0dcbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 11 deletions

View file

@ -93,7 +93,7 @@ func TestMapFields(t *testing.T) {
End: utils.Ptr("0010-11-12T13:14:15Z"),
},
},
Network: &ske.V1Network{
Network: &ske.Network{
Id: utils.Ptr("nid"),
},
Name: utils.Ptr("name"),
@ -235,7 +235,7 @@ func TestMapFields(t *testing.T) {
types.ObjectNull(extensionsTypes),
&ske.Cluster{
Name: utils.Ptr("name"),
Network: &ske.V1Network{},
Network: &ske.Network{},
},
Model{
Id: types.StringValue("pid,name"),
@ -1970,7 +1970,7 @@ func TestToNetworkPayload(t *testing.T) {
tests := []struct {
description string
model *Model
expected *ske.V1Network
expected *ske.Network
isValid bool
}{
{
@ -1982,7 +1982,7 @@ func TestToNetworkPayload(t *testing.T) {
"id": types.StringValue("nid"),
}),
},
&ske.V1Network{
&ske.Network{
Id: utils.Ptr("nid"),
},
true,
@ -1996,7 +1996,7 @@ func TestToNetworkPayload(t *testing.T) {
"id": types.StringNull(),
}),
},
&ske.V1Network{},
&ske.Network{},
true,
},
{