We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3eda89 commit bf3104fCopy full SHA for bf3104f
interfaces.go
@@ -83,7 +83,7 @@ type VPCInterfaceIPv4Range struct {
83
}
84
85
type VLANInterface struct {
86
- Label string `json:"vlan_label"`
+ VLANLabel string `json:"vlan_label"`
87
IPAMAddress *string `json:"ipam_address,omitempty"`
88
89
test/unit/interface_test.go
@@ -30,7 +30,7 @@ func TestInterface_Get(t *testing.T) {
30
assert.Equal(t, 123, iface.ID)
31
assert.Equal(t, 1, iface.Version)
32
assert.Equal(t, false, *iface.DefaultRoute.IPv4)
33
- assert.Equal(t, "my_vlan", iface.VLAN.Label)
+ assert.Equal(t, "my_vlan", iface.VLAN.VLANLabel)
34
35
36
func TestInterface_List(t *testing.T) {
0 commit comments